选中复制

快速复制鼠标选中内容

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

// ==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:///*
// ==/UserScript==

let _剪切板
window.addEventListener('selectionchange', () => {
    _剪切板 = window.getSelection().toString() || _剪切板

        navigator.clipboard
          .writeText(_剪切板)
          .catch(err => {
            console.log('内容复制失败', err)
          })
      },true)

QingJ © 2025

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