Hamsterbase Highlighter

Hamsterbase Highlighter

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Hamsterbase Highlighter",
  "version": "1.4.0",
  "action": {},
  "background": {
    "service_worker": "./background/content.js",
    "type": "module"
  },
  "icons": {
    "16": "assets/hamsterbase.png",
    "32": "assets/hamsterbase.png",
    "48": "assets/hamsterbase.png",
    "128": "assets/hamsterbase.png"
  },
  "content_scripts": [
    {
      "type": "module",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./content-script/style.css.js",
        "./content-script/contentScript.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "pageCapture",
    "storage",
    "contextMenus"
  ],
  "optional_host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}