您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
chat scroller gallons & gulch
// ==UserScript== // @name Chat Scroller Gallons % Gulch // @namespace http://tampermonkey.net/ // @version 1.0 // @description chat scroller gallons & gulch // @author Guzmán11 // @match https://gallons.io/ // @grant none // ==/UserScript== let condiciones=true; let space=" "; let rango=120; let aumento=0; let disminuir=rango; let texto="========>"; function todo(){ if(condiciones == false){ texto="<========"; } if(condiciones == true){ texto="========>"; } if(condiciones == true){ aumento++; disminuir--; } if(aumento == rango){ condiciones=false; } if(condiciones == false){ disminuir++; aumento--; } if(aumento == 0){ condiciones = true } window['objects']['websocket'].send(`c,${space.repeat(aumento)} ${texto} ${space.repeat(disminuir)}`); } let chat=setInterval(()=>{ todo(); todo(); todo(); },0);