SafePal Extension Wallet

SafePal Extension Wallet

Managing Your Assets Just Got Easier.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "short_name": "SafePal",
  "version": "2.23.0",
  "default_locale": "en",
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/sfp.png",
    "19": "images/sfp.png",
    "32": "images/sfp.png",
    "38": "images/sfp.png",
    "48": "images/sfp.png",
    "64": "images/sfp.png",
    "128": "images/sfp.png",
    "512": "images/sfp.png"
  },
  "action": {
    "default_icon": {
      "16": "images/sfp.png",
      "19": "images/sfp.png",
      "32": "images/sfp.png",
      "48": "images/sfp.png",
      "128": "images/sfp.png"
    },
    "default_title": "SafePal Extension Wallet",
    "default_popup": "popup.html"
  },
  "author": "https:",
  "background": {
    "service_worker": "backgroundV3.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "webextension-polyfill.js",
        "content-script.js"
      ],
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage",
    "unlimitedStorage",
    "notifications",
    "tabs",
    "cookies"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "inpage.js",
        "user-media-permission.html",
        "popup.html"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}