Shell Wallet

Shell Wallet

Shell Wallet is a browser extension wallet for the Inter blockchain ecosystem.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Shell Wallet",
  "description": "Shell Wallet is a browser extension wallet for the Inter blockchain ecosystem.",
  "version": "0.3.5",
  "icons": {
    "16": "assets/icon-16.png",
    "48": "assets/icon-48.png",
    "128": "assets/icon-128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Shell"
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "permissions": [
    "storage",
    "notifications",
    "idle",
    "alarms"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "browser-polyfill.js",
        "contentScripts.bundle.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "injectedScript.bundle.js",
        "blocklist.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}