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