PCD Title Spell Check

PCD Title Spell Check

Add spell check functionality to the title field in PCD. After installing this add-on, misspelled words within the PCD title field will be highlighted with a red squiggly line underneath.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "PCD Title Spell Check",
  "version": "1.1.0",
  "description": "Updates the title element in PCD to include spell check.",
  "icons": {
    "48": "icons/google_spell_check.svg",
    "96": "icons/google_spell_check.svg"
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "icons/google_spell_check.svg",
      "32": "icons/google_spell_check.svg"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*imecode/*"
      ],
      "js": [
        "addSpellCheckToInputs.js"
      ]
    }
  ]
}