Cashtab

Cashtab

A browser-integrated eCash wallet from Bitcoin ABC

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Cashtab",
  "description": "A browser-integrated eCash wallet from Bitcoin ABC",
  "version": "3.38.0",
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "service_worker.js"
  },
  "action": {
    "default_popup": "index.html",
    "default_title": "Cashtab"
  },
  "icons": {
    "16": "ecash16.png",
    "48": "ecash48.png",
    "128": "ecash128.png",
    "192": "ecash192.png",
    "512": "ecash512.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}