Spell Check

Highlights misspelled words on the active webpage.

Cos'è Spell Check?

Spell Check è un'estensione di Chrome sviluppata da Mike Costello, e la sua funzione principale è "Highlights misspelled words on the active webpage.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Spell Check

Scarica i file di estensione Spell Check 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

                        Quickly spell check webpages. Useful for web developers & editors to catch spelling errors in published sites.

* Supports english dictionary.
* Marks misspelled words inline on the page with a red underline.
* Does not offer suggestions.
* Safe - plugin requires no special permissions or external requests.
* Keyboard shortcut Cmd+Shift+K (Mac) or Ctrl+Shift+K (Win)                    

Informazioni di Base sull'Estensione

Nome Spell Check Spell Check
ID ofbiibdnnhllfldbglbhmiojndiepejl
URL Ufficiale https://chromewebstore.google.com/detail/spell-check/ofbiibdnnhllfldbglbhmiojndiepejl
Descrizione Highlights misspelled words on the active webpage.
Dimensione del File 208 KB
Conteggio Installazioni 2,758
Versione Corrente 1.0.2
Ultimo Aggiornamento 2016-06-03
Data di Pubblicazione 2016-06-03
Valutazione 4.00/5 Totale 14 Valutazioni
Sviluppatore Mike Costello
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Spell Check",
    "short_name": "Spell Check Page",
    "version": "1.0.2",
    "description": "Highlights misspelled words on the active webpage.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "spell\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Spell check this page"
    },
    "web_accessible_resources": [
        "typo\/dictionaries\/*"
    ],
    "commands": {
        "toggle-spell-check": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "mac": "Command+Shift+K"
            },
            "description": "Toggle Spell Check"
        }
    }
}