Mindbreeze InSpire

Mindbreeze InSpire

Browser Extension for Mindbreeze InSpire

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mindbreeze InSpire",
  "description": "Browser Extension for Mindbreeze InSpire",
  "version": "24.2.0.359",
  "icons": {
    "16": "favicon.png",
    "48": "favicon.png",
    "128": "favicon.png"
  },
  "manifest_version": 3,
  "background": {
    "service_worker": "scripts/backgroundScript/init.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/contentScript/helper.js",
        "scripts/contentScript/contentScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {},
  "options_ui": {
    "page": "html/settings.html",
    "open_in_tab": false
  },
  "permissions": [
    "storage",
    "cookies",
    "tabs",
    "contextMenus"
  ],
  "storage": {
    "managed_schema": "schema/schema.json"
  },
  "host_permissions": [
    "*://*/*"
  ]
}