Crypto Ticker

Crypto Ticker

Track the prices of your favourite crypto coins 24/7! Prep for the next bull run! Current Features: - Select any number of coins…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Crypto Ticker",
  "name": "Crypto Ticker",
  "version": "1.41",
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "Open the popup"
  },
  "icons": {
    "16": "ctlogo.png",
    "48": "ctlogo.png",
    "128": "ctlogo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "assets/*",
    "hardcodedData/*",
    "Inconsolata/*"
  ]
}