选中复制

快速复制鼠标选中内容

目前為 2020-12-19 提交的版本,檢視 最新版本

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

;(function IIFE() {
  let embed = document.querySelector('embed')
  if (embed && embed.type === 'application/pdf') return

  document.addEventListener(
    'selectionchange',
    () => {
      let 剪切板 = window.getSelection().toString()
      if (!剪切板) return
      navigator.clipboard.writeText(剪切板).catch(err => {
        console.log('内容复制失败', err)
      })
    }
  )
})()

QingJ © 2025

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