dframe-browser-extension

dframe-browser-extension

Join D Frame for the Universal Basic Income (UBI) revolution on Blockchain

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Join D Frame for the Universal Basic Income (UBI) revolution on Blockchain",
  "version": "5.0.0",
  "manifest_version": 3,
  "name": "dframe-browser-extension",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "history",
    "alarms",
    "background",
    "storage",
    "tabs",
    "clipboardRead",
    "bookmarks",
    "downloads",
    "webRequest",
    "scripting",
    "geolocation",
    "activeTab",
    "storage",
    "scripting",
    "webNavigation",
    "notifications"
  ],
  "externally_connectable": {
    "matches": [
      "https://dframe-user-alpha.vercel.app/*"
    ]
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "devtools_page": "devtools.html",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'wasm-unsafe-eval'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css, contentScript.bundle.js",
        "background.bundle.js",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}