// ==UserScript== // @name click-copy-text // @namespace http://tampermonkey.net/ // @version 0.2 // @description try to take over the world! // @author You // @match * // @require https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.min.js // @grant GM_setClipboard // @downloadURL none // ==/UserScript== (function() { 'use strict'; $('body *').on('click',function(event){ if(event.altKey){ event.preventDefault(); event.stopPropagation() const text = $(this).text().trim() if(text){ highlight(event.target) GM_setClipboard(text) } } }) function highlight(clickedElement){ var rect = clickedElement.getBoundingClientRect(); var frame = document.createElement("div"); frame.style.position = "absolute"; frame.style.top = (rect.top + window.scrollY) + "px"; frame.style.left = (rect.left + window.scrollX) + "px"; frame.style.width = (rect.width - 4) + "px"; frame.style.height = (rect.height - 4) + "px"; frame.style.border = "solid 2px gold"; frame.style.borderRadius = "5px"; frame.style.zIndex = "99999"; frame.style.pointerEvents = "none"; document.body.appendChild(frame); $(frame).fadeIn(300, "swing").delay(500).fadeOut(500, "swing"); } })();