Batch Download

快传 旋风 批量连接生成

目前为 2016-06-18 提交的版本。查看 最新版本

// ==UserScript==
// @name       Batch Download
// @namespace  https://gf.qytechs.cn/scripts/4453
// @version    0.3
// @description  快传 旋风 批量连接生成
// @match http://fenxiang.qq.com/upload/*
// @match http://kuai.xunlei.com/d/*
// @grant GM_addStyle
// @copyright  2012+, You
// ==/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('<textarea class="myboard">'+links+'</textarea>');
$('.myboard').focus();
$('.myboard').select();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址