您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Make stencil stickers larger than the default size limit.
// ==UserScript== // @name Bypass Stencil Sticker's Size Limit // @namespace Vholran.BypassStencilSticker'sSizeLimit // @version 1.0.2 // @description Make stencil stickers larger than the default size limit. // @author Vholran (https://gf.qytechs.cn/en/users/841616) // @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) => { $(() => { if ($('#main').length && LOGGEDIN) { const roomObserver = new MutationObserver(m => { if (/\Шаблоны|Plantillas|Stencils/.test(m[0].target.textContent)) { new MutationObserver(m => { if (m[0].target.disabled) { m[0].target.removeAttribute('disabled'); } }).observe($('.fa-parachute-box').parent()[0], { attributes: true }); } roomObserver.disconnect(); }); roomObserver.observe($('#infotext')[0], { childList: true }); } }); })(window.jQuery.noConflict(true));
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址