Math Wallet

Math Wallet

The MetaMask Scatter TronLink PolkadotJS Alternative All-in-One Crypto Wallet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Math Wallet",
  "description": "The MetaMask Scatter TronLink PolkadotJS Alternative All-in-One Crypto Wallet",
  "manifest_version": 2,
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_title": "Math Wallet",
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content_start.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content_end.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "inject.js",
    "inject_start.js",
    "inject_end.js"
  ],
  "homepage_url": "http://www.mathwallet.org",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "version": "2.8.6",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}