自动倍速刷课
智慧树禁止倍速,刷课中途还会跳出一些检测题让你不能一边开着一边摸鱼!可自行了解ocs网课助手。
ocs网课助手
复制粘贴
背景
选了一个线上公选课,要在智慧树听课,平时分包括网上看视频的天数、问答数什么的,问答倒比较好抄,直接cv就行了,结果js复制粘贴被禁用了orz
禁止原因
js设置了禁用复制粘贴
js脚本解除复制粘贴限制
在油猴中新建脚本,把这段代码复制上去保存就好!
// ==UserScript==
// @name Disable Copy and Paste Restrictions
// @namespace https://711LLL711.github.io
// @version 1.0
// @description Disable copy, paste, and context menu restrictions on zhihuishu.com
// @author Klutz
// @match https://qah5.zhihuishu.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
setTimeout(function(){
// 允许选择文本
document.onselectstart = true;
// 允许复制剪切粘贴和鼠标右键菜单操作
document.oncopy = true;
document.oncut = true;
document.onpaste = true;
document.oncontextmenu = true;
}, 1000);
})();
当然,你也可以每次F12在console中手动输入
document.onselectstart = true;
document.oncopy = true;
document.oncut = true;
document.onpaste = true;
document.oncontextmenu = true;