Spell Check

Highlights misspelled words on the active webpage.

Co je Spell Check?

Spell Check je rozšíření Chrome vyvinuté Mike Costello, a jeho hlavní funkcí je „Highlights misspelled words on the active webpage.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Spell Check

Stáhněte si soubory rozšíření Spell Check ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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)                    

Základní Informace o Rozšíření

Název Spell Check Spell Check
ID ofbiibdnnhllfldbglbhmiojndiepejl
Oficiální URL https://chromewebstore.google.com/detail/spell-check/ofbiibdnnhllfldbglbhmiojndiepejl
Popis Highlights misspelled words on the active webpage.
Velikost souboru 208 KB
Počet instalací 2,758
Aktuální Verze 1.0.2
Poslední Aktualizace 2016-06-03
Datum Vydání 2016-06-03
Hodnocení 4.00/5 Celkem 14 Hodnocení
Vývojář Mike Costello
Typ Platby free
Podporované Jazyky 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"
        }
    }
}