Greasy Fork is available in English.
一键复制
当前为
// ==UserScript==
// @namespace yunyuyuan
// @name smartCopyJSPlugin
// @description 一键复制
// @include *
// @version 0.0.1.20201102084132
// ==/UserScript==
(function (){
'use strict';
window.onload = function (){
document.addEventListener('copy', function (e){
e.preventDefault();
e.stopPropagation();
document.execCommand('copy');
})
}
})()