您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Intercepts download links and opens PDFs in-browser
// ==UserScript== // @name Unibe ILIAS PDF Viewer Bypass (Intercept Links) // @namespace https://ilias.unibe.ch/ // @author zinchaiku // @version 1.4 // @description Intercepts download links and opens PDFs in-browser // @match https://ilias.unibe.ch/* // @grant none // @license MIT // ==/UserScript== (function () { 'use strict'; // Adjust selector to match your download links document.querySelectorAll('a[href*="_download.html"]').forEach(link => { link.addEventListener('click', function(e) { e.preventDefault(); fetch(link.href, { credentials: 'include' }) .then(res => { const contentType = res.headers.get('Content-Type') || ''; if (contentType.includes('pdf')) { return res.blob().then(blob => { const blobUrl = URL.createObjectURL(blob); window.open(blobUrl, '_blank'); setTimeout(() => URL.revokeObjectURL(blobUrl), 60000); }); } else { // Not a PDF, fallback to normal navigation window.location.href = link.href; } }); }); }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址