【掘金/知乎】免登录复制并移除小尾巴

自用小工具~掘金免登录复制并移除小尾巴

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         【掘金/知乎】免登录复制并移除小尾巴
// @version      0.2
// @author       雪导
// @description  自用小工具~掘金免登录复制并移除小尾巴
// @match        https://juejin.cn/post/*
// @match        https://www.zhihu.com/*
// @require      https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.5.1.min.js
// @grant        none
// @license MIT
// @namespace https://greasyfork.org/users/860042
// ==/UserScript==

(function() {
    'use strict';
    $("pre,code").css("user-select","auto");


    [...document.querySelectorAll('*')].forEach(item=>{
        item.oncopy = function(e) {
            e.stopPropagation();
        }
    })
})();