Webpage Spell-Check
Instant spell-check on any web page
Webpage Spell-Check là gì?
Webpage Spell-Check là một tiện ích mở rộng Chrome được phát triển bởi https://www.syedgakbar.com, và tính năng chính của nó là "Instant spell-check on any web page".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Webpage Spell-Check
Tải xuống các tệp mở rộng Webpage Spell-Check dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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/
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | mgdhaoimpabdhmacaclbbjddhngchjik |
URL Chính Thức | https://chromewebstore.google.com/detail/webpage-spell-check/mgdhaoimpabdhmacaclbbjddhngchjik |
Mô tả | Instant spell-check on any web page |
Kích Thước Tệp | 7.63 MB |
Số Lần Cài Đặt | 33,623 |
Phiên Bản Hiện Tại | 0.3 |
Cập Nhật Lần Cuối | 2023-11-18 |
Ngày Phát Hành | 2020-03-03 |
Đánh Giá | 2.79/5 Tổng số 81 Đánh Giá |
Nhà Phát Triển | https://www.syedgakbar.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://blog.syedgakbar.com/webpage-spell-check-extension/ |
URL Trang Trợ Giúp | https://blog.syedgakbar.com/webpage-spell-check-extension/ |
URL Trang Chính Sách Bảo Mật | https://www.syedgakbar.com/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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:\/\/*\/*" ] } ] } |