北京邮电大学云邮课件下载

下载云邮教学空间课件

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         北京邮电大学云邮课件下载
// @namespace    http://tampermonkey.net/
// @version      2024-10-11
// @description  下载云邮教学空间课件
// @author       Jiayu Yang
// @match        https://ucloud.bupt.edu.cn/uclass/course.html*
// @icon         https://ucloud.bupt.edu.cn/uclass/favicon.ico
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var url = location.href;
    if (url.length <= 75 || url.substring(45, 75) != '#/resourceLearn?onlinePreview=') return;

    document.styleSheets[0].insertRule('.btn{position:fixed;right:60px;bottom:80px;width:90px;height:45px;border-radius:10px;border:none;transition-duration:0.3s;color:white;font-size:18px;background-color:#007bff;box-shadow:0 4px 8px 0 rgba(0,0,0,0.2),0 3px 10px 0 rgba(0,0,0,0.19)}');
    document.styleSheets[0].insertRule('.btn:active{background-color:#55a7ff;transition:0.15s}');
    document.styleSheets[0].insertRule('.btn:hover{background-color:#258fff;box-shadow:0 6px 8px 0 rgba(0,0,0,0.24),0 8px 24px 0 rgba(0,0,0,0.19)}');

    var btn = document.createElement('button');
    btn.innerText = '重定向';
    btn.className = 'btn';

    btn.onclick = () => {
        btn.innerText = '跳转中…';
        var l = url.search('fileucloud.bupt.edu.cn');
        var r = url.search('Fresponse-content-disposition') - 2;
        window.location.href = 'https://' + url.substring(l, r).replaceAll('%2F', '/');
    };

    document.body.appendChild(btn);
})();