SPED Tooltips and Dictionary

SPED Tooltips and Dictionary

Provides tooltips and definitions for Special Education terms

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SPED Tooltips and Dictionary",
  "short_name": "SPED T&D",
  "version": "0.2",
  "description": "Provides tooltips and definitions for Special Education terms",
  "author": "Craig A. Haller",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "FindAndReplaceDOMText.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "activeTab",
    "contextMenus",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Click icon to enable tooltips and/or highlight text and right-click to DEFINE"
  },
  "web_accessible_resources": [
    "img/external.png"
  ]
}