网页强制复制

右键强力解锁,可以复制一些特殊网站的文字

  1. // ==UserScript==
  2. // @name 网页强制复制
  3. // @namespace https://gitcafe.net/
  4. // @author 无法诉说的吟荡
  5. // @icon https://gitcafe.net/favicon.ico
  6. // @version 3.4
  7. // @description 右键强力解锁,可以复制一些特殊网站的文字
  8. // @homepage https://gf.qytechs.cn/zh-CN/scripts/218
  9. // @include *
  10. // @run-at document-end
  11. // @grant unsafeWindow
  12. // @require https://cdn.jsdelivr.net/npm/jquery@2.1.0/dist/jquery.min.js
  13.  
  14. // ==/UserScript==
  15.  
  16. function restore() {
  17. with(document.wrappedJSObject || document) {
  18. onmouseup = null;
  19. onmousedown = null;
  20. oncontextmenu = null
  21. }
  22. var arAllElements = document.getElementsByTagName('*');
  23. for (var i = arAllElements.length - 1; i >= 0; i--) {
  24. var elmOne = arAllElements[i];
  25. with(elmOne.wrappedJSObject || elmOne) {
  26. onmouseup = null;
  27. onmousedown = null
  28. }
  29. }
  30. }
  31. window.addEventListener('load', restore, true);
  32.  
  33. function addGlobalStyle(css) {
  34. var head, style;
  35. head = document.getElementsByTagName('head')[0];
  36. if (!head) {
  37. return
  38. }
  39. style = document.createElement('style');
  40. style.type = 'text/css';
  41. style.innerHTML = css;
  42. head.appendChild(style)
  43. }
  44. addGlobalStyle("html, * {-moz-user-select:text!important;}");

QingJ © 2025

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