解除拼多多评论选中限制

解除拼多多网页评论中的选中和复制等限制

  1. // ==UserScript==
  2. // @name 解除拼多多评论选中限制
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0.1
  5. // @description 解除拼多多网页评论中的选中和复制等限制
  6. // @author 无言
  7. // @match https://mobile.yangkeduo.com/*
  8. // @license MIT
  9. // @grant none
  10.  
  11.  
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. function removeSelectionRestrictions() {
  17. // 鼠标事件
  18. document.oncontextmenu = null; // 解除鼠标右键
  19. document.onselectstart = null; // 解除文字选择
  20. document.onmousedown = null; // 解除鼠标按下事件
  21. document.onmouseup = null; // 解除鼠标释放事件
  22. document.onclick = null; // 解除鼠标点击事件
  23. document.ondblclick = null; // 解除鼠标双击事件
  24. document.onmousemove = null; // 解除鼠标移动事件
  25. document.onmouseover = null; // 解除鼠标悬浮事件
  26. document.onmouseout = null; // 解除鼠标移出事件
  27. document.onmouseenter = null; // 解除鼠标进入事件
  28. document.onmouseleave = null; // 解除鼠标离开事件
  29.  
  30. // 键盘事件
  31. document.onkeydown = null; // 解除按下键盘按键事件
  32. document.onkeyup = null; // 解除键盘按键释放事件
  33. document.onkeypress = null; // 解除键盘按键按下和释放事件
  34.  
  35. // 触摸事件(移动端)
  36. document.ontouchstart = null; // 解除手指按下事件
  37. document.ontouchmove = null; // 解除手指滑动事件
  38. document.ontouchend = null; // 解除手指释放事件
  39. document.ontouchcancel = null; // 解除触摸取消事件
  40.  
  41. // 滚动事件
  42. document.onscroll = null; // 解除滚动事件
  43.  
  44. // 拖放事件
  45. document.ondrag = null; // 解除拖动事件
  46. document.ondragstart = null; // 解除拖动开始事件
  47. document.ondragend = null; // 解除拖动结束事件
  48. document.ondragenter = null; // 解除拖动进入事件
  49. document.ondragleave = null; // 解除拖动离开事件
  50. document.ondragover = null; // 解除拖动悬浮事件
  51. document.ondrop = null; // 解除拖放事件
  52. document.oncopy = null; // 解除复制事件
  53. document.oncut = null; // 解除剪切事件
  54. document.onpaste = null; // 解除粘贴事件
  55.  
  56. // 禁用用户选择样式(如禁用选中文字)
  57. document.body.style.userSelect = 'auto';
  58.  
  59. document.title = '禁止鼠标右键已解除';
  60.  
  61. }
  62. removeSelectionRestrictions();
  63. })();

QingJ © 2025

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