高科大教學平台PDF下載

強制啟用PDF下載功能

目前為 2025-03-25 提交的版本,檢視 最新版本

// ==UserScript==
// @name         高科大教學平台PDF下載
// @namespace    https://facaikotei.github.io/
// @version      2.0.1
// @description  強制啟用PDF下載功能
// @author       (c)2024 facaikotei
// @match        https://elearning.nkust.edu.tw/learn/path/viewPDF.php?*
// @icon         https://www.nkust.edu.tw/var/file/0/1000/img/513/491347347.jpg
// @license      MIT
// @homepageURL  https://gf.qytechs.cn/scripts/496114
// @supportURL   https://github.com/facaikotei/nkust-pdf-dl
// ==/UserScript==

(function() {
    'use strict';

    if (document.getElementById("download").style.display == "none") {
        document.getElementById("download").style.display = "block";
        document.getElementById("download").onclick = function() {
            window.open(DEFAULT_URL.replaceAll("%2F", "/"));
        };
    }
})();

QingJ © 2025

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