aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/experiments.ts
blob: 37a59c7c9606d585dc85cccd064dadbb7e5034c1 (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: "Experiments",
    authors: [Devs.Ven, Devs.Megu],
    description: "Enable Experiments",
    patches: [{
        find: "Object.defineProperties(this,{isDeveloper",
        replacement: {
            match: /(?<={isDeveloper:\{[^}]+,get:function\(\)\{return )\w/,
            replace: "true"
        }
    }, {
        find: 'type:"user",revision',
        replacement: {
            match: /(\w)\|\|"CONNECTION_OPEN".+?;/g,
            replace: "$1=!0;"
        }
    }]
});