您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
优化迅雷离线界面,方便多选
// ==UserScript== // @name 迅雷离线界面优化 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 优化迅雷离线界面,方便多选 // @author You // @match http://dynamic.cloud.vip.xunlei.com/user_task?* // @grant none // ==/UserScript== (function() { 'use strict'; $("<style>.rwbox .rw_list { position: relative; }\n.rw_list .w01 { background: rgba(94,160,222,.1); position: absolute; left: 0; top: 0; height: 100%; }\n.rw_list .w01sel { padding: 20px 0 0 16px; }\n.rw_list .w02 { margin-left: 40px; }</style>").appendTo(document.head); var tid = null; $("div.rwbox").live("DOMSubtreeModified", function() { if (tid) { window.clearTimeout(tid); } tid = window.setTimeout(function() { tid = null; console.log("hoho"); $("div.rwbox .w01").click(function(e) { var $target = $(e.target); e.stopImmediatePropagation(); e.stopPropagation(); //console.log(e, $target); $target.find(":checkbox").trigger("click"); }); }, 10); }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址