您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
去除中国科学院大学课程网站对进入控制台的限制
// ==UserScript== // @name ucas-course-console-helper // @namespace https://les1ie.com/ // @version 0.2 // @description 去除中国科学院大学课程网站对进入控制台的限制 // @author Les1ie // @match https://course.ucas.ac.cn/portal/* // @grant none // ==/UserScript== (function() { 'use strict'; document.oncontextmenu = true // 允许右键 // 允许通过快捷键进入控制台 document.onkeydown = document.onkeyup = document.onkeypress = function(event) { var e = event || window.event || arguments.callee.caller.arguments[0]; if (e && e.keyCode == 123) { e.returnValue = false; return (false); }else if((e.ctrlKey)&&(e.shiftKey)&&(e.keyCode==73)){ e.returnValue = false; return (false); }else if((e.ctrlKey)&&(e.keyCode==85)){//追加 e.returnValue = false; return (false); } } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址