Multi Highlight

Search and highlight multiple words on web pages.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Search and highlight multiple words on web pages.",
  "version": "1.1.2",
  "manifest_version": 3,
  "name": "Multi Highlight",
  "homepage_url": "https://betelgeuseas.github.io/extensions/",
  "action": {
    "default_popup": "popup.html",
    "default_title": "Multi Highlight",
    "default_icon": "icon-32.png"
  },
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "64": "icon-64.png",
    "128": "icon-128.png"
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "storage"
  ]
}