Page 1 of 1

[부탁] 맞춤법 교정 "부가기능" 만들어주세요

Posted: 2007 03 28 16:41 05
by mollla
제가 요즘 인터넷에 글 올릴 때 맞춤법을 확인하고 올리고 있습니다.

http://urimal.cs.pusan.ac.kr/urimal_new/

사이트에 가서 오른쪽 메뉴에서 "한국어 맞춤법/문법 검사기"를 클릭하면

http://164.125.36.47/urimal-spellcheck.html

사이트가 뜨거든요.

여기에 문장을 입력해서 "확인하기"를 누르면
틀린 부분과 권장되는 것들이 나옵니다.

음... 파이어폭스의 오른쪽 버튼에 "맞춤법 검사" 정도 메뉴를 넣고,
선택영역을 검사해서 팝업창으로 보여줬으면 편리할 것 같습니다.

만들어주세요~ :-)

MG용으로 썼던 건데..

Posted: 2007 03 28 21:39 08
by 화성
마우스 제스쳐에 등록해 두고 썼던 겁니다. 조금만 고치면 될 것 같은데요.

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())));
})();

Posted: 2007 03 28 22:24 58
by astraea
확장도 좋지만
ff 내의 자체 기능을 활용하여
사전 파일을 제작하여
spell check 에 이용하면
손쉽게 입력폼에서 틀린건 빨갛게 밑줄 그어지고
참 좋을거 같은데,,

영어와 달리 한글 맞춤법 사전 파일은
만들기 힘들겠죠?ㅠ_ㅠ;

확장기능은 아니고 북마크릿입니다.

Posted: 2007 03 30 19:16 50
by 정승원
http://jeongsw.tistory.com/11

제가 예전에 블로그에 올렸던 글입니다.

확장기능은 아니고 북마크릿이지만,
혹시 도움이 될지도 몰라 링크 걸어봅니다.