Auto lights chosen words on a page

Auto lights chosen words on a page

Automatic search, selection and notification by keywords on the page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "1.9",
  "manifest_version": 2,
  "minimum_chrome_version": "20",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "browser_action": {
    "default_icon": "pic/icon_1616.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "tabs",
    "http://*/*",
    "https://*/*",
    "notifications",
    "tts"
  ],
  "options_page": "options.html",
  "icons": {
    "16": "pic/icon_1616.png",
    "48": "pic/icon_4848.png",
    "128": "pic/icon_128128.png"
  },
  "web_accessible_resources": [
    "pic/link.png",
    "pic/bg.png",
    "pic/icon_4848.png"
  ]
}