By mybeky
—
Last update
Mar 23, 2008
—
Installed
81 times.
// ==UserScript==
// @name it168 se-forum auto downloader
// @namespace http://mybeky.cn/
// @description 跳过下载链接选择页面,直接下载论坛附件
// @include http://se*.it168.com/viewthread.php*
// @include http://se*.it168.com/thread*
// ==/UserScript==
/*svrId是下载方式:
* 默认链接:0
*备用链接一:1
*备用链接二:2
*备用链接三:3
*备用链接四:4
*/
var svrId = 0;
var attachmentLinks = document.evaluate("//a[@href[contains(.,'attachment.php')]]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
for(var i = 0; i < attachmentLinks.snapshotLength; i++) {
currentLink = attachmentLinks.snapshotItem(i);
var attachmentURL = currentLink.href.replace("attachment", "attachments") + "&svrid=" + svrId;
currentLink.setAttribute('href', attachmentURL);
currentLink.setAttribute('target', '_self');
}