Spellify
Fix spelling mistakes on any web page
What is Spellify?
Spellify is a Chrome extension developed by DHS, and its main feature is "Fix spelling mistakes on any web page".
Extension Screenshots
Download Spellify Extension CRX File
Download Spellify extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Spellify |
ID | khfjghgaajkhlddnnffkipoaebjnaloa |
Official URL | https://chromewebstore.google.com/detail/spellify/khfjghgaajkhlddnnffkipoaebjnaloa |
Description | Fix spelling mistakes on any web page |
File Size | 30.28 KB |
Installation Count | 41 |
Current Version | 0.0.1 |
Last Updated | 2015-02-08 |
Publish Date | 2015-02-08 |
Rating | 5.00/5 Total 1 Ratings |
Developer | DHS |
Payment Type | free |
Supported Languages | 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" } ] } |