您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
删除网站复制时讨厌的声明 目前支持网站 Leetcode | CSDN
当前为
// ==UserScript== // @name copy_killer.js // @namespace http://tampermonkey.net/ // @version 0.1 // @description 删除网站复制时讨厌的声明 目前支持网站 Leetcode | CSDN // @author wuuconix // @match https://leetcode-cn.com/problems/* // @match https://blog.csdn.net/* // @icon https://www.google.com/s2/favicons?sz=64&domain=leetcode-cn.com // @license MIT // @grant none // ==/UserScript== (function() { 'use strict'; document.addEventListener('copy',function(e){ let clipboardData = e.clipboardData || window.clipboardData; if(!clipboardData) return ; let text = window.getSelection().toString(); //手动得到用户选择区域并放入剪切版中 if(text){ e.preventDefault(); clipboardData.setData('text/plain', text) } }) })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址