Greasy Fork

Greasy Fork is available in English.

Stop Substack Text Selection Quote Popup

Prevent quote popup from appearing when text is selected on Substack.

当前为 2023-07-21 提交的版本,查看 最新版本

// ==UserScript==
// @name        Stop Substack 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
// ==/UserScript==

document.addEventListener('selectionchange', function(event) {
    event.stopPropagation();
}, true);