A姐分享 页面优化

解除复制限制

  1. // ==UserScript==
  2. // @name A姐分享 页面优化
  3. // @namespace https://gf.qytechs.cn/en/scripts/443351
  4. // @version 0.4
  5. // @description 解除复制限制
  6. // @author zhenhappy<q505507538@gmail.com>
  7. // @match https://*.abskoop.com/*/
  8. // @match https://*.ahhhhfs.com/*/
  9. // @icon https://www.abskoop.com/wp-content/uploads/2021/07/1625221481-04bb5153c0db541-192x192.webp
  10. // @require https://unpkg.com/jquery/dist/jquery.slim.min.js
  11. // @grant none
  12. // @license MIT
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. $('body').css("cssText", "-moz-user-select: auto !important; -webkit-user-select: auto !important; -ms-user-select: auto !important; -khtml-user-select: auto !important; user-select: auto !important")
  17. setInterval(function () {
  18. if (document.ondragstart !== null) document.ondragstart = null
  19. if (document.onselectstart !== null) document.onselectstart = null
  20. if (document.onbeforecopy !== null) document.onbeforecopy = null
  21. if (document.onmouseup !== null) document.onmouseup = null
  22. if (document.onselect !== null) document.onselect = null
  23. if (document.oncopy !== null) document.oncopy = null
  24. }, 500)
  25. })();

QingJ © 2025

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