BurnerX

BurnerX

BurnerX is a Ethereum wallet and Web3 browser extension, built using the Burner Wallet 2 libraries. BurnerX allows users to send &…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "BurnerX",
  "version": "0.1.0",
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_popup": "wallet.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "content-script.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "injected.bundle.js",
    "wallet.html"
  ]
}