Greasy Fork is available in English.
解除慕课网文档页不能复制!
// ==UserScript==
// @name 解除慕课网不能复制!
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 解除慕课网文档页不能复制!
// @author You
// @match https://class.imooc.com/lesson/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var x = document.getElementById("cont-pannel");
//removeListeners(x, 'selectstart')
document
.querySelectorAll("*")
.forEach(node =>
node.addEventListener(
"selectstart",
event => event.stopImmediatePropagation(),
true
)
);
console.log("解除慕课网不能复制!")
// Your code here...
})();