Crypto price checker and freebitco.in auto-roller

Crypto price checker and freebitco.in auto-roller

A simple extension that shows the prices of bitcoin (BTC), ethereum (ETH) and litecoin (LTC) / USD pairs. The extension also does auto-roll for the freebitco.in site. To use, set the toggle switch to ON and leave the site open in one of your tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "BTC Auto-roll",
  "version": "1.1",
  "description": "Auto-roll for freebitcoin and Crypto price-checker",
  "icons": {
    "48": "icons/bitcoin_48.png"
  },
  "background": {
    "scripts": [
      "jquery-3.5.1.min.js",
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "tabs",
    "*://api-pub.bitfinex.com/*",
    "*://api.pro.coinbase.com/*"
  ],
  "browser_action": {
    "default_icon": "icons/bitcoin_48.png",
    "default_title": "BTC Auto-roll",
    "default_popup": "popup/autoroll_menu.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://freebitco.in/*"
      ],
      "js": [
        "jquery-3.5.1.min.js",
        "main_autoroll.js"
      ]
    }
  ]
}