Examine source code of Multiple Search and Highlight

Inspect and view changes in Multiple Search and Highlight source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "version": "0.5.0",
  "name": "Multiple Search and Highlight",
  "description": "Highlight multiple words separated by comma, space or arbitrary separator with persistent history",
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "homepage_url": "https://add0n.com/multiple-highlight.html",
  "background": {
    "service_worker": "worker.js"
  },
  "action": {
    "default_popup": "/data/popup/index.html"
  },
  "offline_enabled": true,
  "icons": {
    "16": "/data/icons/16.png",
    "32": "/data/icons/32.png",
    "64": "/data/icons/64.png",
    "128": "/data/icons/128.png",
    "256": "/data/icons/256.png",
    "512": "/data/icons/512.png"
  },
  "commands": {
    "_execute_action": {},
    "remove_highlight": {
      "description": "Remove all highlights"
    },
    "ckey_highlight": {
      "description": "Highlight the last searched query without opening the extension's interface"
    }
  },
  "options_ui": {
    "page": "/data/options/index.html",
    "open_in_tab": true
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}