Remove tails(去除小尾巴)

2023/2/8 18:03:58

目前為 2023-02-08 提交的版本,檢視 最新版本

// ==UserScript==
// @name        Remove tails(去除小尾巴)
// @namespace   Violentmonkey Scripts
// @match       *://*/*
// @grant       none
// @version     1.01
// @author      wray-lee
// @license     MIT
// @description 2023/2/8 18:03:58
// ==/UserScript==
(function() {
    'use strict';
//去除网页小尾巴
    [...document.querySelectorAll('*')].forEach(item=>{
    item.oncopy = function(e) {
        e.stopPropagation();
    }
});
}())

QingJ © 2025

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