Every time you click on the page, or refresh page, the cursor changes to a random Nitro Type car.
// ==UserScript==
// @name Nitro Type default cursor to a random Nitro Type car changer
// @namespace https://www.nitrotype.com/racer/ginfio_best
// @version 1.0
// @description Every time you click on the page, or refresh page, the cursor changes to a random Nitro Type car.
// @author Ginfio
// @match https://www.nitrotype.com/*
// ==/UserScript==
var cursor = "get${cursor}";
/*cursor.convert("https://www.nitrotype.com/car${random}")
return cursor.random(x*222);
api.get(name); SkittlesTyper()
*/
window.onload = function(){
document.body.addEventListener("click", function(){
document.body.style.cursor = "url(https://www.nitrotype.com/cars/"+Math.floor(Math.random()*217)+"_small_1.png), auto";
})
}