您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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";
- })
- }