// ==UserScript== // @name Batch Download // @namespace http://use.i.E.your.homepage/ // @version 0.1 // @description 快传 旋风 批量连接生成 // @match http://fenxiang.qq.com/upload/* // @match http://kuai.xunlei.com/d/* // @copyright 2012+, You // @downloadURL none // ==/UserScript== GM_addStyle('.myboard{position:fixed;bottom:0px;right:0px;width:300px;height:200px;}'); var links = ''; // 旋风 $('.download_file').each(function(){ var qhref = $(this).attr('qhref'); $(this).attr('href',qhref); $(this).unbind(); links += qhref + '\n'; }); // 快传 $('a[xsid]').each(function(){ var href = $(this).attr('href'); $(this).unbind(); links += href + '\n'; }); $('body').append(''); $('.myboard').focus(); $('.myboard').select();