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