Blockchain Address Navigator

Blockchain Address Navigator

Place mouse cursor on the blockchain address on any Web page to see the details for this address

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Blockchain Address Navigator",
  "version": "0.0.4",
  "description": "Place mouse cursor on the blockchain address on any Web page to see the details for this address",
  "action": {
    "title": "Blockchain Address Navigator",
    "default_popup": "index.html"
  },
  "icons": {
    "16": "logo/logo16.png",
    "32": "logo/logo32.png",
    "48": "logo/logo48.png",
    "128": "logo/logo128.png"
  },
  "author": "https://bitquery.io",
  "homepage_url": "https://bitquery.io",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_idle",
      "css": [
        "style.css"
      ],
      "js": [
        "popup.js"
      ]
    }
  ],
  "background": {
    "service_worker": "bg.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "bg.js",
        "renderEth.js",
        "images/*.png",
        "images/*.svg",
        "settings.html",
        "welcome.html",
        "welcome.js",
        "settings.js",
        "popupDefault.js"
      ],
      "matches": [
        "https://graphql.bitquery.io/*",
        "chrome://extensions/*",
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}