选中复制

快速复制鼠标选中内容

目前为 2020-12-22 提交的版本。查看 最新版本

// ==UserScript==
// @namespace    adach1
// @author       adach1
// @supportURL   https://github.com/Aadach1
// @name         选中复制
// @description  快速复制鼠标选中内容
// @version      1.5
// @include		 http://*
// @include		 https://*
// @include		 file:///*
// @grant        GM_setClipboard
// ==/UserScript==

document.addEventListener('selectionchange', () => {
  let clipboard = window.getSelection().toString()
  if (!clipboard) return
  GM_setClipboard(clipboard, 'text')
})

QingJ © 2025

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