NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name BitCoinChanger // @description Custom Script // @version 0.0.1 // @author Sebs // @license MIT // @include * // @grant none // ==/UserScript== function sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)); } async function bitcoinChanger() { while (true) { try { try { var BTCFiatAmt = document.querySelectorAll('[data-e2e="BTCFiatAmt"]'); BTCFiatAmt[0].innerHTML = "$39,959.70"; BTCFiatAmt[1].innerHTML = "$39,959.70"; } catch {} try { var topBalanceTotal = document.querySelectorAll('[data-e2e="topBalanceTotal"]'); topBalanceTotal[0].innerHTML = '$53,857.01'; } catch {} try { var BTCFiatBalance = document.querySelectorAll('[data-e2e="BTCFiatBalance"]'); BTCFiatBalance[0].innerHTML = '$39,959.70'; } catch {} try { var BTCBalance = document.querySelectorAll('[data-e2e="BTCBalance"]'); BTCBalance[0].innerHTML = '1.0543849 BTC'; BTCBalance[0].className = "sc-htoDjs bIwUPz sc-iqzUVk kcKkHX"; } catch {} try { var ETHBalance = document.querySelectorAll('[data-e2e="ETHBalance"]'); ETHBalance[0].innerHTML = '5.092398 ETH'; ETHBalance[0].className = "sc-htoDjs bIwUPz sc-iqzUVk kcKkHX"; } catch {} try { var ETHFiatBalance = document.querySelectorAll('[data-e2e="ETHFiatBalance"]'); ETHFiatBalance[0].innerHTML = '$13,897.31'; } catch {} try { var ETHFiatAmt = document.querySelectorAll('[data-e2e="ETHFiatAmt"]'); ETHFiatAmt[0].innerHTML = "$13,897.31"; ETHFiatAmt[1].innerHTML = "$13,897.31"; } catch {} try { var BTCAmt = document.querySelectorAll('[data-e2e="BTCAmt"]'); BTCAmt[0].innerHTML = '1.0543849'; BTCAmt[0].className = "sc-htoDjs ikCTZy sc-iqzUVk kCeOQh"; } catch {} try { var ETHAmt = document.querySelectorAll('[data-e2e="ETHAmt"]'); ETHAmt[0].innerHTML = '5.092398'; ETHAmt[0].className = "sc-htoDjs ikCTZy sc-iqzUVk kCeOQh"; } catch {} } catch {} await sleep(1); }} bitcoinChanger();