NoSpellCheck
Enables spellchecking only inside of textarea elements, like Firefox.
NoSpellCheck란 무엇입니까?
NoSpellCheck은(는) Loren Segal에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enables spellchecking only inside of textarea elements, like Firefox."입니다.
확장 프로그램 스크린샷
NoSpellCheck 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Chrome allows you to disable spellchecking on a per-field basis (right click -> Spell-checker options), however it defaults by spellchecking all single-line text input fields. Usually these fields are meant for email addresses or usernames, so you end up with a lot of red lines unless you manually whitelist all these fields. Firefox defaults to ignore these single-line input fields, allowing you to manually enable checking if you want. This extension enables the Firefox spellchecking behaviour, only checking multiline textarea fields by default. Known Issues: If this extension is enabled, you cannot use the "Spell-checking options" to manually enable an input field. There is no way for the extension to know about this setting, currently, and there is no way to disable spellchecking while respecting Chrome's own settings. So if you rely on spellchecking for manually whitelisted text fields this extension will not work so great for you. Source is available on Github: http://github.com/lsegal/NoSpellCheck
확장 프로그램 기본 정보
이름 | NoSpellCheck |
ID | ggjagapjfmnmhpppeakjiofimchmpaih |
공식 URL | https://chromewebstore.google.com/detail/nospellcheck/ggjagapjfmnmhpppeakjiofimchmpaih |
설명 | Enables spellchecking only inside of textarea elements, like Firefox. |
파일 크기 | 32.14 KB |
설치 횟수 | 388 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2021-07-10 |
출시 날짜 | 2013-06-23 |
평점 | 4.29/5 총 7 개의 평점 |
개발자 | Loren Segal |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://github.com/lsegal/NoSpellCheck |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NoSpellCheck", "manifest_version": 2, "version": "1.0.1", "description": "Enables spellchecking only inside of textarea elements, like Firefox.", "icons": { "128": "icon128.png", "48": "icon48.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*" ], "all_frames": true, "js": [ "nospellcheck.js" ], "run_at": "document_idle" } ] } |