SAFEW - Simple And Fast Ergo Wallet

SAFEW - Simple And Fast Ergo Wallet

Wallet for ergo blockchain with dApp connector - Allow to add or restore Ergo wallets - View the content of the wallets - View…

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "SAFEW",
  "name": "SAFEW - Simple And Fast Ergo Wallet",
  "version": "0.7.2",
  "action": {},
  "icons": {
    "16": "/images/safew_icon_16.png",
    "32": "/images/safew_icon_32.png",
    "48": "/images/safew_icon_48.png",
    "128": "/images/safew_icon_128.png"
  },
  "background": {
    "service_worker": "./background.js"
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "manifest_version": 3,
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "contentScript.js",
        "inject1.js",
        "inject2.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "extension_ids": []
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}