Webpage Spell-Check
Instant spell-check on any web page
Webpage Spell-Checkとは何ですか?
Webpage Spell-Checkはhttps://www.syedgakbar.comによって開発されたChromeの拡張機能で、その主な機能は「Instant spell-check on any web page」です。
拡張機能のスクリーンショット
Webpage Spell-Check拡張機能のCRXファイルをダウンロード
Webpage Spell-Check拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Are you a web developer, and have ever sent a page to a client with spelling error or typo? Or you are just a cautious one who is afraid to let this happen one day? If yes, then this small extension is just for you. It lets you check the spelling directly on the web-page in Chrome. This way you can easily identify and fix the errors which gets missed in your favourite HTML editor even when it has also spell-check support. As this uses the Google Chrome spell checker, so it also shows the you corrections for the typo and spelling mistakes and let you edit the typos directly in the web-page. Not working? More help and tips here: https://blog.syedgakbar.com/webpage-spell-check-extension/
拡張機能の基本情報
名前 | Webpage Spell-Check |
ID | mgdhaoimpabdhmacaclbbjddhngchjik |
公式URL | https://chromewebstore.google.com/detail/webpage-spell-check/mgdhaoimpabdhmacaclbbjddhngchjik |
説明 | Instant spell-check on any web page |
ファイルサイズ | 7.63 MB |
インストール数 | 33,623 |
現在のバージョン | 0.3 |
最終更新日 | 2023-11-18 |
公開日 | 2020-03-03 |
評価 | 2.79/5 合計 81 レビュー |
開発者 | https://www.syedgakbar.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://blog.syedgakbar.com/webpage-spell-check-extension/ |
ヘルプページのURL | https://blog.syedgakbar.com/webpage-spell-check-extension/ |
プライバシーポリシーページのURL | https://www.syedgakbar.com/privacy |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Webpage Spell-Check", "version": "0.3", "description": "Instant spell-check on any web page", "background": { "service_worker": "js\/background.js" }, "action": { "default_icon": "default_icon.png", "default_title": "Webpage Spell-Check", "default_popup": "popup.html" }, "icons": { "48": "icon_48.png", "128": "icon_48.png" }, "web_accessible_resources": [], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "permissions": [ "storage" ], "content_scripts": [ { "all_frames": false, "js": [ "js\/spellcheck-extension.js" ], "css": [ "css\/stylesheet.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |