Crypto Price Checker

Check any crypto address you find online. Get market stats for all tokens, identify malicious addresses, and reveal popular wallets.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Crypto Price Checker",
  "description": "Check any crypto address you find online. Get market stats for all tokens, identify malicious addresses, and reveal popular wallets.",
  "version": "1.2.0",
  "manifest_version": 3,
  "icons": {
    "16": "img/logo-16.png",
    "32": "img/logo-34.png",
    "48": "img/logo-48.png",
    "128": "img/logo-128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "img/logo-48.png"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "assets/content-script-loader.chunk-b10d7e3f.77363ac2.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "styles/content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [],
      "resources": [
        "img/logo-16.png",
        "img/logo-34.png",
        "img/logo-48.png",
        "img/logo-128.png"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "assets/chunk-b70a5d59.js",
        "assets/chunk-94e1e94d.js",
        "assets/chunk-60da377b.js",
        "assets/chunk-b10d7e3f.js"
      ],
      "use_dynamic_url": true
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+F",
        "mac": "Command+Shift+F",
        "chromeos": "Ctrl+Shift+F",
        "linux": "Ctrl+Shift+F"
      }
    }
  },
  "permissions": [
    "storage",
    "tabs"
  ]
}