Google Keyword Highlighter

Google Keyword Highlighter

Highlights Google-matched words in colour

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Google Keyword Highlighter",
  "version": "1.2",
  "description": "Highlights Google-matched words in colour",
  "icons": {
    "32": "icon_32.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "options_page": "options.html",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ],
      "matches": [
        "https://*.google.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icon_128.png"
      ],
      "matches": [
        "https://*.google.com/*"
      ]
    }
  ]
}