您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Stay logged in on www.moodle.tum.de
// ==UserScript== // @name TUM Moodle Login // @version 1.0.1 // @description Stay logged in on www.moodle.tum.de // @author Zeno Sewald <[email protected]> // @namespace https://github.com/zsewa // @homepageURL https://github.com/zsewa/userscript_tum_moodle_login // @match https://www.moodle.tum.de/ // @match https://www.moodle.tum.de/login/index.php // @run-at document-start // @grant none // ==/UserScript== function redirect() { window.location.replace("https://www.moodle.tum.de/auth/shibboleth/index.php"); } (function() { 'use strict'; const url = window.location.href; if (url === "https://www.moodle.tum.de/login/index.php" || url === "https://www.moodle.tum.de/") { redirect(); } })();