解除慕课网不能复制!

解除慕课网文档页不能复制!

// ==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...
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址