Spell Check
Highlights misspelled words on the active webpage.
Spell Checkとは何ですか?
Spell CheckはMike Costelloによって開発されたChromeの拡張機能で、その主な機能は「Highlights misspelled words on the active webpage.」です。
拡張機能のスクリーンショット
Spell Check拡張機能のCRXファイルをダウンロード
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" } } } |