Skip to content

Instantly share code, notes, and snippets.

@Ext-NT
Last active October 18, 2023 17:37
Show Gist options
  • Save Ext-NT/1f33ddb98a0b4934e5d5ea55db8bcdce to your computer and use it in GitHub Desktop.
Save Ext-NT/1f33ddb98a0b4934e5d5ea55db8bcdce to your computer and use it in GitHub Desktop.
Free User Gold homepage
// ==UserScript==
// @name NT Gold For Free
// @namespace N/A
// @version 1.0
// @description Gives you NT Gold look on Nitro Type garage page!
// @author JothamCodes
// @match https://www.nitrotype.com/*
// ==/UserScript==
(function() {
'use strict';
setInterval(function(){
var a = JSON.parse(localStorage["persist:nt"]);
var b = JSON.parse(a.user);
b.membership = "gold";
b.title = "The Bug";
b.money = b.money + 1000000000;
a.user = JSON.stringify(b);
localStorage["persist:nt"] = JSON.stringify(a);
}, 8000);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment