Spell Check
Highlights misspelled words on the active webpage.
Was ist Spell Check?
Spell Check ist eine Chrome-Erweiterung, die von Mike Costello entwickelt wurde, und ihr Hauptmerkmal ist "Highlights misspelled words on the active webpage.".
Erweiterungsscreenshots
Spell Check-Erweiterungs-CRX-Datei herunterladen
Laden Sie Spell Check-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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) Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ofbiibdnnhllfldbglbhmiojndiepejl |
| Offizielle URL | https://chromewebstore.google.com/detail/spell-check/ofbiibdnnhllfldbglbhmiojndiepejl |
| Beschreibung | Highlights misspelled words on the active webpage. |
| Dateigröße | 208 KB |
| Installationsanzahl | 2,758 |
| Aktuelle Version | 1.0.2 |
| Letztes Update | 2016-06-03 |
| Veröffentlichungsdatum | 2016-06-03 |
| Bewertung | 4.00/5 Insgesamt 14 Bewertungen |
| Entwickler | Mike Costello |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
}
} | |