Vencord/src/plugins/noTrack.ts

26 lines
637 B
TypeScript
Raw Normal View History

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