This code is for Tamper-monkey and it works amazon. It just changes the look of how much money you have and it counts up, I wanted to know if it is possible to make it so whatever number it is on when you refresh the counter starts at that number.
var oof = document.getElementById("gc-ui-balance-gc-balance-value");
oof.innerHTML = "0";
function animateValue(id){
var obj = document.getElementById(id);
var current = parseInt(obj.innerHTML);
setInterval(function(){
obj.innerHTML =current++;
},0.1);
}
animateValue('gc-ui-balance-gc-balance-value');