NoSpellCheck

Enables spellchecking only inside of textarea elements, like Firefox.

NoSpellCheckคืออะไร?

NoSpellCheck เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Loren Segal และคุณลักษณะหลักของมันคือ "Enables spellchecking only inside of textarea elements, like Firefox."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NoSpellCheck

ดาวน์โหลดไฟล์ส่วนขยาย NoSpellCheck ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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"
        }
    ]
}