Spellify
Fix spelling mistakes on any web page
O que é Spellify?
Spellify é uma extensão do Chrome desenvolvida por DHS, e sua principal característica é "Fix spelling mistakes on any web page".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Spellify
Baixe arquivos de extensão Spellify no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Spellify |
ID | khfjghgaajkhlddnnffkipoaebjnaloa |
URL Oficial | https://chromewebstore.google.com/detail/spellify/khfjghgaajkhlddnnffkipoaebjnaloa |
Descrição | Fix spelling mistakes on any web page |
Tamanho do Arquivo | 30.28 KB |
Contagem de Instalações | 41 |
Versão Atual | 0.0.1 |
Última Atualização | 2015-02-08 |
Data de Publicação | 2015-02-08 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | DHS |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } ] } |