您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Make stencil stickers larger than the default size limit.
当前为
// ==UserScript== // @name Bypass Stencil Sticker's Size Limit // @namespace http://tampermonkey.net/ // @version 1.0.1 // @description Make stencil stickers larger than the default size limit. // @author Vholran // @match https://*.drawaria.online/* // @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js // @icon https://www.google.com/s2/favicons?domain=drawaria.online // @grant none // ==/UserScript== (($, undefined) => { $(() => { let roomWords = new RegExp('\Шаблоны|Plantillas|Stencils'); let joinRoomObserver = new MutationObserver((mutations) => { if (roomWords.test(mutations[0].target.textContent) && LOGGEDIN) { let launchStickerObserver = new MutationObserver((mutations) => { if (mutations[0].target.disabled) { $('.fa-parachute-box').parent().prop('disabled', false); } }); launchStickerObserver.observe($('.fa-parachute-box').parent()[0], { attributes: true }); } joinRoomObserver.disconnect(); }); joinRoomObserver.observe($('#infotext')[0], { childList: true }); }); })(window.jQuery.noConflict(true));
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址