제가 요즘 인터넷에 글 올릴 때 맞춤법을 확인하고 올리고 있습니다.
http://urimal.cs.pusan.ac.kr/urimal_new/
사이트에 가서 오른쪽 메뉴에서 "한국어 맞춤법/문법 검사기"를 클릭하면
http://164.125.36.47/urimal-spellcheck.html
사이트가 뜨거든요.
여기에 문장을 입력해서 "확인하기"를 누르면
틀린 부분과 권장되는 것들이 나옵니다.
음... 파이어폭스의 오른쪽 버튼에 "맞춤법 검사" 정도 메뉴를 넣고,
선택영역을 검사해서 팝업창으로 보여줬으면 편리할 것 같습니다.
만들어주세요~
[부탁] 맞춤법 교정 "부가기능" 만들어주세요
-
- Posts: 47
- Joined: 2004 04 21 14:17 20
- Location: 교통지옥 분당
- Contact:
-
- 서포터즈
- Posts: 168
- Joined: 2005 02 17 00:49 53
- Location: 구미
- Contact:
MG용으로 썼던 건데..
마우스 제스쳐에 등록해 두고 썼던 겁니다. 조금만 고치면 될 것 같은데요.
Code: Select all
(function(){
var sel = mgGetSelection().toString().replace(/^\s+|\s+$/, "");
if (sel.length == 0)
return;
var nbox = gBrowser.getNotificationBox();
var n = nbox.getNotificationWithValue("kspacer-result") || nbox.appendNotification("", "kspacer-result", null, nbox.PRIORITY_INFO_MEDIUM, [
{ label: "복사", accessKey: "C", callback: function() { Cc["@mozilla.org/widget/clipboardhelper;1"].getService(Ci.nsIClipboardHelper).copyString(n.label); } }
]);
n.label = "한국어 자동 띄어쓰기 교정기에 접속합니다.";
n.image = "chrome://global/skin/throbber/Throbber-small.gif";
var req = new XMLHttpRequest();
req.open("POST", "http://nlp2.korea.ac.kr/~dglee/kspacer/spacer.cgi", true);
req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
req.overrideMimeType("text/html; charset=EUC-KR");
req.onerror = function(e) { n.label = "오류: " + e.target.status; n.image = null; };
req.onload = function(e) {
var p = this.responseText.indexOf('", p) + 1;
n.label = this.responseText.substring(p, this.responseText.lastIndexOf(""));
n.image = null;
};
var conv = Cc["@mozilla.org/intl/scriptableunicodeconverter"].createInstance(Ci.nsIScriptableUnicodeConverter);
conv.charset = "EUC-KR";
req.send("TEXT=" + escape(conv.ConvertFromUnicode(sel.toString())));
})();
-
- 해커
- Posts: 477
- Joined: 2004 01 04 23:57 23
- Contact:
-
- Posts: 28
- Joined: 2006 12 09 11:38 12
- Location: 광주
- Contact:
Who is online
Users browsing this forum: No registered users and 0 guests