一键复制
当前为
// ==UserScript==
// @namespace yunyuyuan
// @name smartCopyJSPlugin
// @description 一键复制
// @include *
// @version 0.0.1.20201102084315
// ==/UserScript==
(function (){
'use strict';
window.onload = function (){
document.oncopy = function (e){
console.log(e)
e.preventDefault();
e.stopPropagation();
document.execCommand('copy');
}
}
})()