选中复制

快速复制鼠标选中内容

目前為 2020-11-20 提交的版本,檢視 最新版本

// ==UserScript==
// @name         选中复制
// @description  快速复制鼠标选中内容
// @version      1.0
// @author       psrx
// @namespace    https://github.com/Masotan
// @run-at       document-end
// @include			http://*
// @include			https://*
// ==/UserScript==


window.addEventListener('mouseup', () => {
        navigator.clipboard
          .writeText(window.getSelection().toString())
          .then(Function.prototype)
          .catch(err => {
            console.log('内容复制失败', err)
          })
      },true)

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址