Automatic Keywords Highlighter

Automatic Keywords Highlighter

Automatically highlights given keywords on any web page you visit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Automatic Keywords Highlighter",
  "short_name": "Automatic Keywords Highlighter",
  "description": "Automatically highlights given keywords on any web page you visit.",
  "version": "0.1.0",
  "icons": {
    "16": "icons/icon16.png",
    "24": "icons/icon24.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "72": "icons/icon72.png",
    "96": "icons/icon96.png",
    "128": "icons/icon128.png",
    "256": "icons/icon256.png"
  },
  "homepage_url": "https://github.com/wrzlbrmft/chrome-keywords-highlighter/blob/master/README.md",
  "permissions": [
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "24": "icons/icon24.png",
      "32": "icons/icon32.png",
      "48": "icons/icon48.png",
      "64": "icons/icon64.png",
      "72": "icons/icon72.png",
      "96": "icons/icon96.png",
      "128": "icons/icon128.png",
      "256": "icons/icon256.png"
    },
    "default_title": "Automatic Keywords Highlighter",
    "default_popup": "popup.html"
  },
  "options_page": "options.html"
}