Plugin

NoUnblockToJump

Allows you to jump to messages of blocked or ignored users and likely spammers without unblocking them

Utility
index.ts
Download

Source

src/plugins/noUnblockToJump/index.ts
1import { Devs } from "@utils/constants";
2import definePlugin from "@utils/types";
3
4export default definePlugin({
5 name: "NoUnblockToJump",
6 description: "Allows you to jump to messages of blocked or ignored users and likely spammers without unblocking them",
7 tags: ["Utility"],
8 authors: [Devs.dzshn],
9 patches: [
10 {
11 find: "#{intl::UNIGNORE_TO_JUMP_BODY}",
12 replacement: {
13 match: /if\(\i\.\i\.isBlockedForMessage\(/,
14 replace: "return true;$&"
15 }
16 }
17 ]
18});
19