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
1import { Devs } from "@utils/constants.js";
2import definePlugin from "@utils/types";
3
4export default definePlugin({
5 name: "NoMaskedUrlPaste",
6 authors: [Devs.CatNoir],
7 description: "Pasting a link while having text selected will not paste as masked URL",
8 tags: ["Chat", "Utility"],
9 patches: [
10 {
11 find: ".selection,preventEmojiSurrogates:",
12 replacement: {
13 match: /if\(null!=\i.selection&&\i.\i.isExpanded\(\i.selection\)\)/,
14 replace: "if(false)"
15 }
16 }
17 ],
18});
19