Blockchair

Blockchair

Block explorer and anonymous crypto portfolio tracker for Bitcoin, Ethereum, and others in your browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Blockchair",
  "version": "2.1.21",
  "description": "Block explorer and anonymous crypto portfolio tracker for Bitcoin, Ethereum, and others in your browser",
  "omnibox": {
    "keyword": "b"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Blockchair",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/logo-block-16.png",
      "32": "images/logo-block-32.png",
      "64": "images/logo-block-64.png",
      "128": "images/logo-block-128.png",
      "256": "images/logo-block-256.png",
      "512": "images/logo-block-512.png",
      "1024": "images/logo-block-1024.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "https://blockchair.com/*",
        "https://whiskey.test/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end",
      "css": [
        "assets/content_style.css"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://blockchair.com/*",
        "https://whiskey.test/*"
      ],
      "js": [
        "content_script_blockchair.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "images/logo-block-16.png",
    "32": "images/logo-block-32.png",
    "64": "images/logo-block-64.png",
    "128": "images/logo-block-128.png",
    "256": "images/logo-block-256.png",
    "512": "images/logo-block-512.png",
    "1024": "images/logo-block-1024.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "alarms",
    "notifications"
  ]
}