// ==UserScript== // @name 防止未经授权的自动复制 // @version 3 // @description 在将内容复制到剪贴板之前提示用户以防止未经授权的自动复制。 // @grant GM_setClipboard // @run-at document-start // @match *://*/* // @namespace https://greasyfork.org/users/452911 // @downloadURL none // ==/UserScript== (function() { 'use strict'; let hasCopied = false; const handleCopy = function(event) { event.preventDefault(); const selection = window.getSelection().toString(); const shouldCopy = hasCopied ? true : confirm('是否复制?\n' + selection); if (shouldCopy) { hasCopied = true; GM_setClipboard(selection); } else { document.execCommand = function() { return true; }; } }; document.addEventListener('copy', handleCopy); })();