Crypto Correct

Crypto Correct

Shows prices in USD on bittrex.com. Uses the BTC/USD price given on bittrex.com for conversions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Crypto Correct",
  "description": "Shows prices in USD on bittrex.com. Uses the BTC/USD price given on bittrex.com for conversions.",
  "version": "1.8",
  "icons": {
    "16": "img/icon128.png",
    "48": "img/icon128.png",
    "128": "img/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.bittrex.com/*"
      ],
      "css": [
        "css/main.css"
      ],
      "js": [
        "js/vendor/jquery.min.js",
        "js/config.js",
        "js/contentScript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": []
}