Spellify
Fix spelling mistakes on any web page
Spellify क्या है?
Spellify DHS द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Fix spelling mistakes on any web page"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Spellify एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } ] } |