Unblu Demo

Unblu Demo

Unblu browser demo with the usage of the unblu JS API.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Unblu browser demo with the usage of the unblu JS API.",
  "manifest_version": 3,
  "name": "Unblu Demo",
  "short_name": "Helper plugin to integrate unblu in any website",
  "version": "3.0.2",
  "homepage_url": "https://www.unblu.com",
  "icons": {
    "48": "icons/logo_48_48.png",
    "128": "icons/logo_128_128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "declarativeNetRequest",
    "declarativeNetRequestWithHostAccess",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_icon": "icons/logo_icon.png",
    "default_title": "Unblu Demo",
    "default_popup": "popup/unblu_browser_extension.html"
  },
  "background": {
    "service_worker": "./popup/background-v3.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./popup/libs/browser-polyfill.min.js",
        "./popup/shared/PluginConstants.js",
        "./popup/shared/unbluShared.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup/js/hostPageJsApi.js",
        "popup/images/banner.png",
        "popup/shared/PluginConstants.js",
        "popup/unblu-extension-injected-isolated-script.js",
        "popup/unblu-extension-injected-main-world-script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}