Spell Check

Spell Check

Highlights misspelled words on the active webpage.

Merlin
Additional files are visible only to premium users

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"
    }
  }
}