// ==UserScript== // @namespace yunyuyuan // @name smartCopyJSPlugin // @description 一键复制 // @include * // @version 0.0.1.20201102084554 // @downloadURL none // ==/UserScript== (function (){ 'use strict'; window.onload = function (){ document.oncopy = function (e){ console.log(e) e.preventDefault(); e.stopPropagation(); } } })()