google-search-highlight

google-search-highlight

This is an extension that highlights Google's search word.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "google-search-highlight",
  "description": "This is an extension that highlights Google's search word.",
  "version": "0.3",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "jquery.highlight-5.js",
        "content_script.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/icon-16x16.png",
    "48": "img/icon-48x48.png",
    "128": "img/icon-128x128.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ]
}