2022-08-29 16:05:22 -04:00
|
|
|
import definePlugin from "../utils/types";
|
2022-10-05 18:42:58 -04:00
|
|
|
import { Devs } from "../utils/constants";
|
2022-08-29 16:05:22 -04:00
|
|
|
|
|
|
|
export default definePlugin({
|
|
|
|
name: "NoTrack",
|
|
|
|
description: "Disable Discord's tracking and crash reporting",
|
2022-09-30 20:27:28 -04:00
|
|
|
authors: [Devs.Cyn],
|
2022-08-30 22:07:16 -04:00
|
|
|
required: true,
|
2022-09-01 23:27:32 -04:00
|
|
|
patches: [
|
|
|
|
{
|
|
|
|
find: "TRACKING_URL:",
|
|
|
|
replacement: {
|
2022-09-27 08:34:57 -04:00
|
|
|
match: /^.+$/,
|
|
|
|
replace: "()=>{}",
|
2022-09-01 23:27:32 -04:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
find: "window.DiscordSentry=",
|
|
|
|
replacement: {
|
2022-09-27 08:34:57 -04:00
|
|
|
match: /window\.DiscordSentry=function.+\}\(\)/,
|
2022-09-01 23:27:32 -04:00
|
|
|
replace: "",
|
|
|
|
}
|
2022-08-29 16:05:22 -04:00
|
|
|
}
|
2022-09-01 23:27:32 -04:00
|
|
|
]
|
|
|
|
});
|