您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
強制啟用PDF下載功能
当前为
// ==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或关注我们的公众号极客氢云获取最新地址