Fire Wallet

Fire Wallet

Fire is a tool that makes Web3 simple, by showing you what happens at the smart contract level in a human-readable format.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Fire Wallet",
  "name": "Fire Wallet",
  "version": "3.1.0",
  "description": "Fire is a tool that makes Web3 simple, by showing you what happens at the smart contract level in a human-readable format.",
  "manifest_version": 3,
  "background": {
    "service_worker": "js/background.bundle.js"
  },
  "oauth2": {
    "client_id": "231212465594-atgvnjilvdtc86ca4b8ro07g5il9elo9.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/drive.file"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvlDqj0gBmYHjdVYY2t+vJAPcsW2+B8tN5+8G+A+pWptFtIEHSy3FRWDOO8SckKu4Ylz7N5A719ROK4zMlD37Wy9CRHNL7gE6P2FexAtbe0nSfMmci4E5/Ysi9Rz7t2eNLeWqyE3iLckQ6eJ0PaPz1Ft1dauhQ+AK6NWxDCTNgqPx7KDNumA9V4okuKwBsGWyZBiSLrGktIu4yLqd8jYrdG6pNo7mH9PvLM7Kfq32RvOGuZE9WFU4/MkTO+VvFJwIvzbFX9w02f0BQ/o78ctjANtd/f1lZQXvZCrR8fTNRqpQOlrkksHwB4Ru0pCm3OAVW7YJXpGRcwIPIezbNV7PzwIDAQAB",
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage",
    "identity"
  ],
  "action": {
    "default_popup": "extension.html",
    "default_icon": {
      "16": "assets/images/Fire.png",
      "32": "assets/images/Fire.png",
      "48": "assets/images/Fire.png",
      "128": "assets/images/Fire.png"
    }
  },
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://mint.joinfire.xyz/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/contentScript.bundle.js"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/inject.bundle.js",
        "manifest.json",
        "assets/images/fire-injected-wallet-ui.png"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    },
    {
      "resources": [
        "js/scriptShell.bundle.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "icons": {
    "16": "assets/images/Fire.png",
    "32": "assets/images/Fire.png",
    "48": "assets/images/Fire.png",
    "128": "assets/images/Fire.png"
  }
}