Webpage Spell-Check
Instant spell-check on any web page
Webpage Spell-Check क्या है?
Webpage Spell-Check https://www.syedgakbar.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Instant spell-check on any web page"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Webpage Spell-Check एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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:\/\/*\/*" ] } ] } |