free-copy-on-segmentfault

free copy on segmentfault.com

// ==UserScript==
// @name         free-copy-on-segmentfault
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  free copy on segmentfault.com
// @author       Alexy
// @match        https://segmentfault.com/*
// @icon         https://www.google.com/s2/favicons?domain=segmentfault.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.querySelectorAll("article.article").forEach(function(t) {
                t.addEventListener("copy", function(t) {
                    event.stopPropagation();
                }, true);
	});

})();

QingJ © 2025

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