Highlighter

Highlighter

Highlights a user-defined list of keywords on all web pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Highlighter",
  "description": "Highlights a user-defined list of keywords on all web pages.",
  "version": "1.0.0",
  "permissions": [
    "storage",
    "tabs",
    "contextMenus"
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "page_action": {
    "default_icon": {
      "16": "img/icon16.png",
      "19": "img/icon19.png",
      "38": "img/icon38.png",
      "48": "img/icon48.png",
      "128": "img/icon128.png"
    },
    "default_title": "Highlighter",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "css": [
        "css/highlight.css"
      ],
      "js": [
        "js/jquery.min.js",
        "js/jquery.highlightregex.min.js",
        "js/highlight.regex.min.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "icons": {
    "16": "img/icon16.png",
    "19": "img/icon19.png",
    "38": "img/icon38.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "manifest_version": 2
}