Greasy Fork镜像 支持简体中文。

允许复制

超星考试允许复制

  1. // ==UserScript==
  2. // @name 允许复制
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description 超星考试允许复制
  6. // @author PRO
  7. // @match https://mooc1.chaoxing.com/exam-ans/exam/test/reVersionTestStartNew*
  8. // @icon http://chaoxing.com/favicon.ico
  9. // @grant none
  10. // @license gpl-3.0
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. document.body.attributes.removeNamedItem("onselectstart");
  16. let css = document.createElement("style");
  17. css.textContent = `html:not(input):not(textarea):not(select):not(option):not(button){
  18. -webkit-touch-callout: unset !important;
  19. -webkit-user-select: unset !important;
  20. -khtml-user-select: unset !important;
  21. -moz-user-select: unset !important;
  22. -ms-user-select: unset !important;
  23. user-select: unset !important;
  24. }`;
  25. document.head.appendChild(css);
  26. })();

QingJ © 2025

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