Unibe ILIAS PDF Viewer Bypass (Intercept Links)

Intercepts download links and opens PDFs in-browser

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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;
                    }
                });
        });
    });
})();