Safle Wallet

Safle Wallet

Safle Wallet is a Next-Gen identity wallet based on a decentralised infrastructure.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Safle Wallet",
  "version": "0.9.9",
  "description": "Safle Wallet is a Next-Gen identity wallet based on a decentralised infrastructure.",
  "manifest_version": 3,
  "action": {
    "default_popup": "./index.html",
    "default_title": "Open Safle Wallet",
    "default_icon": "./safle-icon.png"
  },
  "icons": {
    "16": "./safle-icon_16.png",
    "32": "./safle-icon_32.png",
    "48": "./safle-icon_48.png",
    "128": "./safle-icon_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content-script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "eth-provider.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' https:",
    "sandbox": "sandbox allow-scripts; script-src 'self'"
  }
}