// ==UserScript== // @name 迅雷离线界面优化 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 优化迅雷离线界面,方便多选 // @author You // @match http://dynamic.cloud.vip.xunlei.com/user_task?* // @grant none // @downloadURL https://update.greasyfork.icu/scripts/21099/%E8%BF%85%E9%9B%B7%E7%A6%BB%E7%BA%BF%E7%95%8C%E9%9D%A2%E4%BC%98%E5%8C%96.user.js // @updateURL https://update.greasyfork.icu/scripts/21099/%E8%BF%85%E9%9B%B7%E7%A6%BB%E7%BA%BF%E7%95%8C%E9%9D%A2%E4%BC%98%E5%8C%96.meta.js // ==/UserScript== (function() { 'use strict'; $("").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); }); })();