Spell Check
Highlights misspelled words on the active webpage.
Qu'est-ce que Spell Check ?
Spell Check est une extension Chrome développée par Mike Costello, et sa fonction principale est "Highlights misspelled words on the active webpage.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Spell Check
Téléchargez les fichiers d'extension Spell Check au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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)
Informations de Base sur l'Extension
Nom | Spell Check |
ID | ofbiibdnnhllfldbglbhmiojndiepejl |
URL Officiel | https://chromewebstore.google.com/detail/spell-check/ofbiibdnnhllfldbglbhmiojndiepejl |
Description | Highlights misspelled words on the active webpage. |
Taille du Fichier | 208 KB |
Nombre d'Installations | 2,758 |
Version Actuelle | 1.0.2 |
Dernière Mise à Jour | 2016-06-03 |
Date de Publication | 2016-06-03 |
Évaluation | 4.00/5 Total 14 Évaluations |
Développeur | Mike Costello |
Type de Paiement | free |
Langues Prises en Charge | 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" } } } |