Reddit BTC Ticker

Reddit BTC Ticker

Add a bitcoin price ticker to the bitcoin subreddit

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Reddit BTC Ticker",
  "manifest_version": 2,
  "version": "1.4",
  "description": "Add a bitcoin price ticker to the bitcoin subreddit",
  "permissions": [
    "http://www.reddit.com/r/Bitcoin*",
    "https://mtgox.com/api/1/BTCUSD/ticker",
    "http://rate-exchange.appspot.com/currency?from=USD&to=*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.reddit.com/r/Bitcoin*",
        "*://*.reddit.com/r/MtRed*"
      ],
      "js": [
        "jquery-1.9.1.min.js",
        "btc-ticker.js"
      ]
    }
  ]
}