Greasy Fork is available in English.

Advanced Amazon Money Hack

This is a advanced amazon money hack! Not really it's not even a hack this script just changes the look of your amazon gift card balance amount by counting up. Have Fun!

  1. // ==UserScript==
  2. // @name Advanced Amazon Money Hack
  3. // @namespace http://jmuse.cf/
  4. // @version 4.0
  5. // @description This is a advanced amazon money hack! Not really it's not even a hack this script just changes the look of your amazon gift card balance amount by counting up. Have Fun!
  6. // @author Jmuse
  7. // @match https://www.amazon.com/*
  8. // ==/UserScript==
  9. (function() {
  10. 'use strict';
  11. // Special Thanks To Yamid, Chris Sandvik, and jo_va for helping me with this script!
  12. function animateValue(id) {
  13. var obj = document.getElementById("gc-ui-balance-gc-balance-value");
  14. var current = parseInt(localStorage.getItem("lastCount")) || 5000; // Number It Starts At
  15. var interval = null;
  16. var maxCount = 15000; // Number It Stops At
  17. var callback = function() {
  18. var nextCount = current++;
  19. if (nextCount === maxCount) {
  20. clearInterval(interval);
  21. }
  22. localStorage.setItem("lastCount", nextCount);
  23. obj.innerText = '$' + nextCount; // Adds the $ symbol next to number to make more legit looking
  24. }
  25. interval = setInterval(callback, 0.1);
  26. }
  27. animateValue('gc-ui-balance-gc-balance-value')
  28. })();