Crypto Ticker

Crypto Ticker

Shows the current price of your favourite crypto currency in the browser toolbar. You can select between > 1,500 cryptos.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Crypto Ticker",
  "description": "Shows the current price of your favourite crypto currency in the browser toolbar. You can select between > 1,500 cryptos.",
  "icons": {
    "16": "skin/ticker_16.png",
    "32": "skin/ticker_32.png",
    "48": "skin/ticker_48.png",
    "128": "skin/ticker_128.png"
  },
  "version": "1.1.0",
  "author": "Crypton",
  "action": {
    "default_icon": {
      "16": "skin/ticker_16.png",
      "32": "skin/ticker_32.png",
      "48": "skin/ticker_48.png",
      "128": "skin/ticker_128.png"
    },
    "default_title": "Crypto Ticker",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "storage",
    "alarms"
  ],
  "host_permissions": [
    "https://api.coincap.io/",
    "https://www.ecb.europa.eu/"
  ]
}