Greasy Fork is available in English.

高科大教學平台PDF下載

強制啟用PDF下載功能

// ==UserScript==
// @name		高科大教學平台PDF下載
// @name:zh-CN		高科大教学平台PDF下载
// @name:en		nkust elearning PDF download
// @namespace		https://facaikotei.github.io/
// @version		2
// @description		強制啟用PDF下載功能
// @description:zh-CN	强制启用PDF下载功能
// @description:en	Force enable PDF downloading feature
// @match		https://elearning.nkust.edu.tw/learn/path/viewPDF.php?*
// @icon		https://elearning.nkust.edu.tw/base/10001/door/tpl/icon.ico
// @grant		none
// @license		MIT
// @homepageURL		https://facaikotei.github.io/
// @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","/"))};
    }
})();