DPal:Wallet for DogeCoin

DPal:Wallet for DogeCoin

DogeCoin Wallet for Webapps

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "DPal:Wallet for DogeCoin",
  "description": "DogeCoin Wallet for Webapps",
  "version": "1.2.17",
  "manifest_version": 3,
  "icons": {
    "128": "./static/logo-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "alarms",
    "unlimitedStorage"
  ],
  "action": {
    "default_icon": {
      "128": "./static/logo-128.png"
    },
    "Tooltip": "DPal",
    "default_title": "DPal",
    "default_popup": "index.html#/main?popup=true"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "validaddress.js",
        "content.js"
      ],
      "css": [
        "tips.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "inject.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ]
    }
  ]
}