multipleKeywordHighlighter

multipleKeywordHighlighter

Highlight and Clear multiple KEYWORD

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "multipleKeywordHighlighter",
  "version": "2.0",
  "description": "Highlight and Clear multiple KEYWORD",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}