Dune Metal

Dune Metal

Dune Wallet in your Browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.8.1",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "inpage.js"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "img/metal.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "icons": {
    "16": "img/metal-16.png",
    "32": "img/metal-32.png",
    "48": "img/metal-48.png",
    "128": "img/metal-128.png"
  },
  "content_security_policy": "script-src 'self' 'wasm-eval'; object-src 'self'",
  "manifest_version": 2
}