Spellify

Fix spelling mistakes on any web page

Cos'è Spellify?

Spellify è un'estensione di Chrome sviluppata da DHS, e la sua funzione principale è "Fix spelling mistakes on any web page".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Spellify

Scarica i file di estensione Spellify in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Spellify Spellify
ID khfjghgaajkhlddnnffkipoaebjnaloa
URL Ufficiale https://chromewebstore.google.com/detail/spellify/khfjghgaajkhlddnnffkipoaebjnaloa
Descrizione Fix spelling mistakes on any web page
Dimensione del File 30.28 KB
Conteggio Installazioni 41
Versione Corrente 0.0.1
Ultimo Aggiornamento 2015-02-08
Data di Pubblicazione 2015-02-08
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore DHS
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}