Spell Check

Highlights misspelled words on the active webpage.

Vad är Spell Check?

Spell Check är en Chrome-tillägg utvecklad av Mike Costello, och dess huvudfunktion är "Highlights misspelled words on the active webpage.".

Tilläggsskärmbilder

screenshot

Ladda ner Spell Check-förlängningens CRX-fil

Ladda ner Spell Check-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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)                    

Grundläggande Information om Tillägg

Namn Spell Check Spell Check
ID ofbiibdnnhllfldbglbhmiojndiepejl
Officiell webbadress https://chromewebstore.google.com/detail/spell-check/ofbiibdnnhllfldbglbhmiojndiepejl
Beskrivning Highlights misspelled words on the active webpage.
Filstorlek 208 KB
Antal Installationer 2,758
Aktuell Version 1.0.2
Senast Uppdaterad 2016-06-03
Publiceringsdatum 2016-06-03
Betyg 4.00/5 Totalt 14 Betyg
Utvecklare Mike Costello
Betalningssätt free
Stödda Språk 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"
        }
    }
}