Example of extra info:
https://i.imgur.com/0WEHENZ.jpg
function addEUR() {
var btc = $('[data-bind="text:navigation.displayBitcoinUsd"]').text().substring(9);
// To Table
if (0 === $('#balanceTable td[colspan="9"]').length && 0 === $('#balanceTable .sjonkeesse').length) {
var amount, euro;
[].forEach.call($('#balanceTable tbody tr'), function(e) {
amount = $(e).find('td:nth-child(').text().trim();
euro = Math.round(amount * btc / dollarToEuro * 100) / 100;
$(e).append($(`
});
}
// To total
var strTotal = $('#pad-wrapper h4').text();
if (-1 === strTotal.indexOf("EUR")) {
var totalBTC = strTotal.substr(17, strTotal.indexOf('BTC') - 18);
var totalEUR = Math.round(totalBTC * btc / dollarToEuro * 100) / 100;
$('#pad-wrapper h4').text(`${strTotal} / ${totalEUR} EUR 💰`);
}
}
$(document).ready(function() {
$('#balanceTable thead tr').append($('
setInterval(function() {
addEUR();
}, 100);
});
To use this code you can install the Chrome plugin called CJS and then navigate to the Bittrex website. In the top right you will find the blue cjs icon. When you click on it you can enter the quoted code above and click on 'enable cjs for this host'. Then click on safe.
Chrome CJS Plugin: https://chrome.google.com/webstore/detail/custom-javascript-for-web/poakhlngfciodnhlhhgnaaelnpjljija
Note: Do not just use every code you get. Review it first to see if there is any malicious code!