NT Gold For Free

Gives you NT Gold look on Nitro Type garage page!

  1. // @name NT Gold For Free
  2. // @namespace // ==UserScript==
  3. // @name NT Gold For Free
  4. // @namespace https://www.theprabhakar.in/
  5. // @version 1.0
  6. // @description Gives you NT Gold look on Nitro Type garage page!
  7. // @author Prabhakar Rai
  8. // @match https://www.nitrotype.com/*
  9. // ==/UserScript==
  10. (function() {
  11. 'use strict';
  12. setInterval(function(){
  13. var a = JSON.parse(localStorage["persist:nt"]);
  14. var b = JSON.parse(a.user);
  15. b.membership = "gold";
  16. b.title = "The Bug";
  17. b.money = b.money + 100000;
  18. a.user = JSON.stringify(b);
  19. localStorage["persist:nt"] = JSON.stringify(a);
  20. }, 8000);
  21. })();
  22. //Credit: https://www.youtube.com/channel/UCGnN...
  23. // @version 1.0
  24. // @description Gives you NT Gold look on Nitro Type garage page!
  25. // @author Prabhakar Rai
  26. // @match https://www.nitrotype.com/*
  27. // ==/UserScript==
  28. (function() {
  29. 'use strict';
  30. setInterval(function(){
  31. var a = JSON.parse(localStorage["persist:nt"]);
  32. var b = JSON.parse(a.user);
  33. b.membership = "gold";
  34. b.title = "The Bug";
  35. b.money = b.money + 100000;
  36. a.user = JSON.stringify(b);
  37. localStorage["persist:nt"] = JSON.stringify(a);
  38. }, 8000);
  39. })();