Spellify
Fix spelling mistakes on any web page
Spellifyとは何ですか?
SpellifyはDHSによって開発されたChromeの拡張機能で、その主な機能は「Fix spelling mistakes on any web page」です。
拡張機能のスクリーンショット
Spellify拡張機能のCRXファイルをダウンロード
Spellify拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Ever get annoyed by spelling mistakes on web pages? Well now you can fix them! 1. Highlight a spelling mistake on a web page 2. Click the Spellify browser button 3. Enter the replacement text 4. Click 'Fix it!' 5. Breathe a sigh of relief
拡張機能の基本情報
名前 | Spellify |
ID | khfjghgaajkhlddnnffkipoaebjnaloa |
公式URL | https://chromewebstore.google.com/detail/spellify/khfjghgaajkhlddnnffkipoaebjnaloa |
説明 | Fix spelling mistakes on any web page |
ファイルサイズ | 30.28 KB |
インストール数 | 41 |
現在のバージョン | 0.0.1 |
最終更新日 | 2015-02-08 |
公開日 | 2015-02-08 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | DHS |
支払い方法 | free |
対応言語 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spellify", "short_name": "Spellify", "description": "Fix spelling mistakes on any web page", "version": "0.0.1", "manifest_version": 2, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs", "storage" ], "icons": { "16": "16.png", "32": "32.png", "48": "48.png", "128": "128.png" }, "browser_action": { "default_icon": "32.png", "default_title": "Fix a spelling mistake", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "replace.js" ], "run_at": "document_end" } ] } |