Crypto Tracker

Crypto Tracker

Current price of your favorite crypto currency. Powered by CoinMarketCap.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Crypto Tracker",
  "short_name": "Crypto ticker",
  "version": "0.0.9",
  "manifest_version": 2,
  "description": "Current price of your favorite crypto currency. Powered by CoinMarketCap.",
  "icons": {
    "16": "icons/[email protected]",
    "48": "icons/[email protected]",
    "128": "icons/[email protected]"
  },
  "background": {
    "scripts": [
      "src/bg/background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "https://api.coinmarketcap.com/*",
    "alarms",
    "storage",
    "notifications"
  ],
  "options_page": "src/options/options.html",
  "browser_action": {
    "default_icon": "icons/[email protected]",
    "default_title": "Crypto Tracker",
    "default_popup": "src/popup/popup.html"
  }
}