// ==UserScript== // @name 选中复制 // @description 快速复制鼠标选中内容 // @version 1.1 // @author psrx // @namespace https://github.com/Masotan // @run-at document-end // @include http://* // @include https://* // @include file:///* // @include file:///* // @downloadURL none // ==/UserScript== let _剪切板 window.addEventListener('selectionchange', () => { _剪切板 = window.getSelection().toString() || _剪切板 navigator.clipboard .writeText(_剪切板) .catch(err => { console.log('内容复制失败', err) }) },true)