您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
wus UI 控制管理
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.greasyfork.org/scripts/37317/243377/wus_uic.js
(function(){ $("body").prepend("<div id='wusdiv'></div>") })(); function addtextag(callback,dtext='......',id='wusinput',btext="Start"){ $("#wusdiv").append(`<textarea rows="3" cols="80" id='${id}'>${dtext}</textarea> <button id='b${id}'>${btext}</button></br>`) $(`#b${id}`).click(function(){ val=$(`#${id}`).val() if(val==dtext){ alert("you can input some vaild text for youself!") return } console.log(`get the val: "${val}" ,then and run the callback`) callback(val) }) } function addfiletag(callback,id='wusfile'){ $("#wusdiv").append(`<input type="file" id="${id}"/></br>`) $(`#${id}`).change(function(){ callback(this.files) }) }