// ==UserScript== // @name Substack - Stop Text Selection Quote Popup // @namespace Violentmonkey Scripts // @match *://*.substack.com/* // @grant none // @version 1.0 // @description Prevent quote popup from appearing when text is selected on Substack. // @author Yotam // @license MIT // @downloadURL none // ==/UserScript== document.addEventListener('selectionchange', function(event) { event.stopPropagation(); }, true);