Highlight Search Keywords

Highlight Search Keywords

Highlight the keywords that you searched in google

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Highlight Search Keywords",
  "description": "Highlight the keywords that you searched in google",
  "version": "0.4",
  "permissions": [
    "storage"
  ],
  "manifest_version": 2,
  "icons": {
    "128": "icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/*",
        "http://www.google.com/*"
      ],
      "js": [
        "catchkeywords.js"
      ],
      "run_at": "document_end"
    },
    {
      "exclude_matches": [
        "https://www.google.com/*",
        "http://www.google.com/*"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "highlightkeywords.js"
      ],
      "run_at": "document_end"
    }
  ]
}