Greasy Fork

Greasy Fork is available in English.

smartCopyJSPlugin

一键复制

目前为 2020-11-02 提交的版本。查看 最新版本

// ==UserScript==
// @namespace yunyuyuan
// @name smartCopyJSPlugin
// @description 一键复制
// @include *
// @version 0.0.1.20201102084938
// ==/UserScript==

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