aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/ify.ts
blob: 40a9708839fd77693b6b3412baa310191f2c0a93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { Devs } from "../utils/constants";
import definePlugin from "../utils/types";

export default definePlugin({
    name: "Ify",
    description: "Disabes Spotify auto-pausing and premium checks",
    authors: [Devs.Cyn],
    patches: [
        {
            find: '.displayName="SpotifyStore"',
            replacement: [{
                match: /\.isPremium=.;/,
                replace: ".isPremium=true;",
            }, ...["SPEAKING", "VOICE_STATE_UPDATES", "MEDIA_ENGINE_SET_DESKTOP_SOURCE"].map(event => ({
                match: new RegExp(`${event}:function\\(.\\){.+?}(,|}\\))`),
                replace: (_, ending) => `${event}:function(){}${ending}`,
            })),
            ],
        },
    ]
});