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);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址