Spell Check
Highlights misspelled words on the active webpage.
Spell Checkคืออะไร?
Spell Check เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mike Costello และคุณลักษณะหลักของมันคือ "Highlights misspelled words on the active webpage."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Spell Check
ดาวน์โหลดไฟล์ส่วนขยาย Spell Check ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Quickly spell check webpages. Useful for web developers & editors to catch spelling errors in published sites. * Supports english dictionary. * Marks misspelled words inline on the page with a red underline. * Does not offer suggestions. * Safe - plugin requires no special permissions or external requests. * Keyboard shortcut Cmd+Shift+K (Mac) or Ctrl+Shift+K (Win)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Spell Check |
ID | ofbiibdnnhllfldbglbhmiojndiepejl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/spell-check/ofbiibdnnhllfldbglbhmiojndiepejl |
คำอธิบาย | Highlights misspelled words on the active webpage. |
ขนาดไฟล์ | 208 KB |
จำนวนการติดตั้ง | 2,758 |
เวอร์ชันปัจจุบัน | 1.0.2 |
อัปเดตครั้งล่าสุด | 2016-06-03 |
วันที่เผยแพร่ | 2016-06-03 |
คะแนน | 4.00/5 รวมทั้งหมด 14 คะแนน |
ผู้พัฒนา | Mike Costello |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Spell Check", "short_name": "Spell Check Page", "version": "1.0.2", "description": "Highlights misspelled words on the active webpage.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "activeTab" ], "background": { "scripts": [ "spell\/background.js" ], "persistent": false }, "browser_action": { "default_title": "Spell check this page" }, "web_accessible_resources": [ "typo\/dictionaries\/*" ], "commands": { "toggle-spell-check": { "suggested_key": { "default": "Ctrl+Shift+K", "mac": "Command+Shift+K" }, "description": "Toggle Spell Check" } } } |