Live Cryptocurrency Toolbar

Live Cryptocurrency Toolbar

Live Cryptocurrency Toolbar. Shows the current price of your favourite crypto currency in the browser toolbar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Live Cryptocurrency Toolbar",
  "version": "1.0",
  "description": "Live Cryptocurrency Toolbar. Shows the current price of your favourite crypto currency in the browser toolbar.",
  "permissions": [
    "storage"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "loader.js"
    ]
  },
  "icons": {
    "16": "16x16.png",
    "48": "48x48.png",
    "128": "128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery.min.js",
        "cryptoToolbar.js"
      ]
    }
  ],
  "options_page": "options.html",
  "manifest_version": 2
}