Equicord/src/plugins/noTrack.ts

25 lines
595 B
TypeScript
Raw Normal View History

2022-08-29 22:05:22 +02:00
import definePlugin from "../utils/types";
export default definePlugin({
name: "NoTrack",
description: "Disable Discord's tracking and crash reporting",
author: "Cynosphere",
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
]
});