pf / clncopy

// ==UserScript==
// @name         clncopy
// @namespace    usnspf
// @version      0.1.0.2
// @description  Force clean copy (ctrl+c) !May broke functionality, just disable if so! 
// @author       pf
// @match        http*://*/*
// @grant        none
// @homepage     https://pastebin.com/LAtyWpTT
// @copyright 2021, pf (https://pastebin.com/LAtyWpTT)
// @license MIT
// @updateURL https://openuserjs.org/meta/pf/clncopy.meta.js
// @downloadURL https://openuserjs.org/install/pf/clncopy.min.user.js
// ==/UserScript==

(function() {
    'use strict';

    window.addEventListener("copy", function (event) {
        event.stopPropagation();
    }, true);
})();