NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Bitconnect Wallet Dollar Calculator // @namespace http://tampermonkey.net/ // @version 0.2 // @description Shows the current equivalent of the Bitconnect wallet in USD // @author Zenturo // @license MIT // @match https://bitconnect.co/* // @grant none // ==/UserScript== $(document).ready(function() { 'use strict'; var walletBalance = $('.bitconnect_wallet_balance').html(); var bitconnectCoinPrice = $('.dev_base_currency_last_price_dollar_header').html(); var finalValue = parseFloat(walletBalance) * parseFloat(bitconnectCoinPrice); $('.bitconnect_wallet_balance').append("<span> (<i class=\"fa fa-dollar\"></i> " + finalValue.toFixed(2) + ")</span>"); });