Skip to content
This repository was archived by the owner on Apr 23, 2026. It is now read-only.

Commit 7cac174

Browse files
committed
feat: add unlimitedAccounts
1 parent 81832d4 commit 7cac174

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

  • src/plugins-extra/unlimitedAccounts
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { Devs } from "@utils/constants";
2+
import definePlugin from "@utils/types";
3+
4+
export default definePlugin({
5+
name: "UnlimitedAccounts",
6+
description: "Removes the maximum accounts limit",
7+
authors: [Devs.D3SOX],
8+
patches: [
9+
{
10+
find: "multiaccount_cta_tooltip_seen",
11+
replacement: {
12+
match: /(let \i=)\d+(,\i="switch-accounts-modal")/,
13+
replace: "$1Infinity$2",
14+
},
15+
},
16+
],
17+
});

0 commit comments

Comments
 (0)