Fetch Wallet

Fetch Wallet

The official Fetch wallet for interacting with the Fetch ledger

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Fetch Wallet",
  "description": "The official Fetch wallet for interacting with the Fetch ledger",
  "version": "0.17.3",
  "icons": {
    "16": "assets/icon-16.png",
    "48": "assets/icon-48.png",
    "128": "assets/icon-128.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Fetch Wallet"
  },
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "permissions": [
    "storage",
    "notifications",
    "identity",
    "idle",
    "alarms"
  ],
  "content_security_policy": "script-src 'self' 'wasm-eval'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "browser-polyfill.js",
        "contentScripts.bundle.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "injectedScript.bundle.js",
    "assets/logo-256.svg",
    "blocklist.html"
  ]
}