Plugin

NoMaskedUrlPaste

Pasting a link while having text selected will not paste as masked URL

Chat Utility
index.ts
Download

Source

src/plugins/noMaskedUrlPaste/index.ts
1/*
2 * FiveCord — a Discord client mod
3 * Copyright (c) 2025 FiveCord
4 * SPDX-License-Identifier: GPL-3.0-or-later
5 */
6
7import { Devs } from "@utils/constants.js";
8import definePlugin from "@utils/types";
9
10export default definePlugin({
11 name: "NoMaskedUrlPaste",
12 authors: [Devs.CatNoir],
13 description: "Pasting a link while having text selected will not paste as masked URL",
14 tags: ["Chat", "Utility"],
15 patches: [
16 {
17 find: ".selection,preventEmojiSurrogates:",
18 replacement: {
19 match: /if\(null!=\i.selection&&\i.\i.isExpanded\(\i.selection\)\)/,
20 replace: "if(false)"
21 }
22 }
23 ],
24});
25