Superhero

Superhero

Superhero Wallet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_security_policy": {
    "extension_pages": "default-src 'self'; script-src 'self'; connect-src *; font-src * data:; img-src * data:; style-src-elem * 'unsafe-inline'; style-src 'self' 'unsafe-inline'; "
  },
  "name": "Superhero",
  "description": "Superhero Wallet",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "unlimitedStorage",
    "activeTab",
    "tabs",
    "declarativeNetRequestWithHostAccess",
    "offscreen"
  ],
  "optional_permissions": [
    "clipboardWrite"
  ],
  "host_permissions": [
    "https://wallet.superhero.com/*"
  ],
  "icons": {
    "48": "./icons/icon_48.png",
    "128": "./icons/icon_128.png"
  },
  "action": {
    "default_title": "Superhero",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "all_frames": true,
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "js/inject.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/index.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "CameraRequestPermission.html",
        "index.html"
      ],
      "matches": [
        "https://wallet.superhero.com/*"
      ]
    },
    {
      "resources": [
        "js/inject.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "version": "2.2.5"
}