高科大教學平台PDF下載

強制啟用PDF下載功能

当前为 2025-04-08 提交的版本,查看 最新版本

// ==UserScript==
// @name         高科大教學平台PDF下載
// @namespace    https://facaikotei.github.io/
// @version      2
// @description  強制啟用PDF下載功能
// @author       (c)2024 facaikotei
// @match        https://elearning.nkust.edu.tw/learn/path/viewPDF.php?*
// @icon         https://elearning.nkust.edu.tw/base/10001/door/tpl/icon.ico
// @license      MIT
// @homepageURL  https://gf.qytechs.cn/scripts/496114
// ==/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或关注我们的公众号极客氢云获取最新地址