Bitcoin Address Lookup

Bitcoin Address Lookup

Get instant balance of any bitcoin address on any webpage. Hold the left alt-key and click or select the address to get balance.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Bitcoin Address Lookup",
  "version": "1.0.0.2",
  "description": "Get instant balance of any bitcoin address on any webpage. Hold the left alt-key and click or select the address to get balance.",
  "icons": {
    "16": "/images/icon16.png",
    "32": "/images/icon32.png",
    "64": "/images/icon64.png",
    "128": "/images/icon128.png"
  },
  "background": {
    "scripts": [
      "script/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "script/contentScript.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "http://*/*",
    "https://*/*",
    "contentSettings"
  ]
}