Remove tails(去除小尾巴)

2023/2/8 18:03:58

目前为 2023-02-08 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Remove tails(去除小尾巴)
  3. // @namespace Violentmonkey Scripts
  4. // @match *://*/*
  5. // @grant none
  6. // @version 1.01
  7. // @author wray-lee
  8. // @license MIT
  9. // @description 2023/2/8 18:03:58
  10. // ==/UserScript==
  11. (function() {
  12. 'use strict';
  13. //去除网页小尾巴
  14. [...document.querySelectorAll('*')].forEach(item=>{
  15. item.oncopy = function(e) {
  16. e.stopPropagation();
  17. }
  18. });
  19. }())