您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
better than other skribbl hax
当前为
// ==UserScript== // @name skribblHax vBetter // @namespace http://tampermonkey.net/ // @version 0.5 // @description better than other skribbl hax // @author You // @match *://skribbl.io/* // @grant none // ==/UserScript== (function() { 'use strict'; (function(window){ window.clickElem=function(elem,x,y){ var bcr=elem.getBoundingClientRect(); x+=bcr.left; y+=bcr.top; elem.dispatchEvent(new MouseEvent("mousedown",{bubbles:true,clientX:x,clientY:y,button:0})); elem.dispatchEvent(new MouseEvent("mouseup",{bubbles:true,clientX:x,clientY:y,button:0})); elem.dispatchEvent(new MouseEvent("click",{bubbles:true,clientX:x,clientY:y,button:0})); }; window.drawDot=function(x,y,s,c){ window.clickElem(document.querySelectorAll('.colorItem')[Math.floor(Math.min(21,Math.max(0,c)))],1,1); window.clickElem(document.querySelectorAll('.brushSize')[Math.floor(Math.min(3,Math.max(0,s)))],1,1); window.clickElem(window.canvasGame,x,y); }; window.drawPattern=async function(){ for(var iii=0;iii<window.canvasGame.clientWidth/5;iii++){ for(var ooo=0;ooo<window.canvasGame.clientHeight/5;ooo++){ drawDot(5*iii,5*ooo,Math.random()*4,Math.random()*22); await new Promise(rrr=>setTimeout(rrr,0)); } await new Promise(rrr=>setTimeout(rrr,0)); } }; })(window) })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址