辅助下载www.ifblue.net(若蓝格)杂志

打开一本杂志页面,点击“下载地址”,本脚本会自动获取百度网盘提取码,并自动输入,打开下载页面。

目前為 2017-06-15 提交的版本,檢視 最新版本

// ==UserScript==
// @name         辅助下载www.ifblue.net(若蓝格)杂志
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  打开一本杂志页面,点击“下载地址”,本脚本会自动获取百度网盘提取码,并自动输入,打开下载页面。
// @author       [email protected]
// @match        http://www.ifblue.net/download.html?pid=*
// @match        https://pan.baidu.com/share/init*
// @grant        GM_log
// @require      https://code.jquery.com/jquery-latest.js
// ==/UserScript==


url = String(window.location);  
host = window.location.host;

//GM_log('host:'+host);

(function() {
    'use strict';

    if(host=='www.ifblue.net'){
        
        //在'www.ifblue.net'页面获取提取码
        var pwd = $('.infos li').eq(1).text().slice(-4);
        GM_log('提取码:'+pwd);
        //在'www.ifblue.net'页面获取资源的网盘地址
        var pan_url = $('#filelink center a').attr('href');

        var pan_url_pwd = pan_url+'#'+pwd;
        GM_log('pan:'+pan_url_pwd);
        //打开网盘页面
        window.location.href = pan_url_pwd;
    }

    if(host=='pan.baidu.com'){
        
        //刚才打开的网盘地址中含有提取码,将其提取
        var pwd=url.slice(-4);
        GM_log('pwd:'+pwd);
        //输入提取吗
        $('#accessCode').val(pwd);
        //打开下载页面
        $('.text').click();
    }

})();

QingJ © 2025

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