Warning: fopen(/www/sites/greasyfork.icu/index/store/temp/60536236c9070e28ec15b99bc5985dc9.html): failed to open stream: No space left on device in /www/sites/greasyfork.icu/index/scriptsControl.php on line 132
smartCopy - 源代码

Greasy Fork

Greasy Fork is available in English.

smartCopy

一键复制文本,360doc,segmentfalut都可复制。

// ==UserScript==
// @namespace yunyuyuan
// @name smartCopy
// @description 一键复制文本,360doc,segmentfalut都可复制。
// @include *
// @version 0.0.1.20201201144033
// ==/UserScript==

(function (){
    'use strict';
    window.onload = function (){
        document.addEventListener('copy', function (e){
            e.stopPropagation();
        }, true);
    }
})()