CoinMarketCap Enhanced

CoinMarketCap Enhanced

Adds some enhancements to the cryptocurrency site CoinMarketCap.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CoinMarketCap Enhanced",
  "version": "1.8.2",
  "manifest_version": 2,
  "description": "Adds some enhancements to the cryptocurrency site CoinMarketCap.com",
  "homepage_url": "https://twitter.com/nathanab_",
  "icons": {
    "128": "icons/icon128.png"
  },
  "permissions": [
    "https://coinmarketcap.com/*",
    "storage"
  ],
  "options_ui": {
    "page": "options/index.html",
    "chrome_style": true
  },
  "web_accessible_resources": [
    "options/index.html"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://coinmarketcap.com/*"
      ],
      "all_frames": true,
      "js": [
        "js/bundle.js"
      ],
      "css": [
        "css/style.css"
      ]
    },
    {
      "matches": [
        "https://coinmarketcap.com/*"
      ],
      "all_frames": true,
      "js": [
        "js/start.js"
      ],
      "run_at": "document_start"
    }
  ]
}