您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
快传 旋风 批量连接生成
当前为
// ==UserScript== // @name Batch Download // @namespace https://greasyfork.org/scripts/4453 // @version 0.2 // @description 快传 旋风 批量连接生成 // @match http://fenxiang.qq.com/upload/* // @match http://kuai.xunlei.com/d/* // @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();