Get Emojis Into Nitro Type Name
// ==UserScript==
// @name Get Emojis Into Your Nitro Type Name
// @namespace https://www.youtube.com/channel/UC62K5Rmg7L3-E5FBm2CbGMw/featured
// @version 1.1
// @description Get Emojis Into Nitro Type Name
// @author MasterSheepGaming
// @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.displayName = "PUT CUSTOM DISPLAY NAME HERE";
b.username = "PUT CUSTOM USERNAME HERE";
a.user = JSON.stringify(b);
localStorage["persist:nt"] = JSON.stringify(a);
}, 8000);
})();
//Credit: https://www.youtube.com/channel/UC62K5Rmg7L3-E5FBm2CbGMw/featured