机械工业下载器

劫持PDFJS下载

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         机械工业下载器
// @namespace    https://qinlili.bid
// @version      0.1
// @description  劫持PDFJS下载
// @author       琴梨梨
// @match        https://dcd.cmanuf.com/ebook/web/index.html*
// @grant        none
// @run-at       document-start
// ==/UserScript==

(function() {
    'use strict';

    const dlFile = (link, name) => {
        let eleLink = document.createElement('a');
        eleLink.download = name;
        eleLink.style.display = 'none';
        eleLink.href = link;
        document.body.appendChild(eleLink);
        eleLink.click();
        document.body.removeChild(eleLink);
    };
    let originConsole=console.log;
    originConsole("Launching...");
    //劫持Uptodown的谷歌play按钮
    (function (appendChild) {
        Node.prototype.appendChild = function (node) {
            if (node.src&&node.src.indexOf("pdf_viewer.min.js")>0 ){
                alert("Hook Success!");
                originConsole("Ready...");
                let originGet=pdfjsLib.getDocument;
                pdfjsLib.getDocument=doc=>{
                    originConsole(doc);
                    dlFile(URL.createObjectURL(new Blob([doc.data])),Date.now()+".pdf")
                    return originGet(doc);
                }
                return appendChild.call(this, node);
            } else {
                return appendChild.call(this, node);
            }
        };
    })(Node.prototype.appendChild);

})();