Wallet Guard: Protect Your Crypto

Wallet Guard: Protect Your Crypto

Wallet Guard acts as a security companion to your crypto wallet of choice, so you can browse at ease.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Wallet Guard: Protect Your Crypto",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0SMGNwLFsP2k1jAD54vtDqLJuIpeZWCc9gdvo2N8hzE1qIkOt29ynU1VgkJbtfuWHqWSyOCo1ljs2MjbqqFjG4qz5o3ZrEAMwmEbWGCuPddUIIiWIK0oF+BkwZiRpRS2nw/i9Dmeusf0eOlxxLYD0NpKszX73lqGt4LBIY8Wva7vmqdnKPa1F6+DDZviXcBRa8CLCzqDujTjON37o+NvQOq2u49UzVXr/DcePFrUTnnjdNkKTQkLlH00lwvxUUJl0g5IVdlxNgZXPY/C6P39YIIxsBFJH0rXvQrLgED6NGR17CBnLhOmmYghku17yoUGg3KrT4aeh8+uG5NrQZuqGwIDAQAB",
  "description": "Wallet Guard acts as a security companion to your crypto wallet of choice, so you can browse at ease.",
  "version": "1.3.3",
  "icons": {
    "128": "images/wg_logos/logo_128x128.png"
  },
  "offline_enabled": false,
  "externally_connectable": {
    "matches": [
      "https://*.walletguard.app/*"
    ]
  },
  "action": {
    "default_icon": "images/wg_logos/logo_16x16.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/vendor.js",
        "js/content-scripts/contentScripts.js",
        "js/content-scripts/bypassCheck.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "js/injected/injectWalletGuard.js",
        "js/vendor.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "storage",
    "tabs",
    "alarms",
    "management",
    "notifications",
    "contextMenus",
    "webRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "commands": {
    "run-chatweb3": {
      "suggested_key": {
        "default": "Ctrl+Shift+U",
        "mac": "Command+Shift+U"
      },
      "description": "Open ChatWeb3"
    }
  }
}