2022-10-21 23:17:06 +00:00
|
|
|
/*
|
|
|
|
* Vencord, a modification for Discord's desktop app
|
|
|
|
* Copyright (c) 2022 Vendicated and contributors
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2022-11-28 12:37:55 +00:00
|
|
|
import { Devs } from "@utils/constants";
|
|
|
|
import definePlugin from "@utils/types";
|
2022-08-29 20:05:22 +00:00
|
|
|
|
|
|
|
export default definePlugin({
|
|
|
|
name: "NoTrack",
|
2023-03-29 23:41:18 +00:00
|
|
|
description: "Disable Discord's tracking ('science'), metrics and Sentry crash reporting",
|
|
|
|
authors: [Devs.Cyn, Devs.Ven, Devs.Nuckyz],
|
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: {
|
2023-03-29 23:35:42 +00:00
|
|
|
match: /^.+$/,
|
|
|
|
replace: "()=>{}",
|
2022-09-02 03:27:32 +00:00
|
|
|
}
|
2023-03-06 21:54:01 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
find: ".METRICS,",
|
|
|
|
replacement: [
|
|
|
|
{
|
|
|
|
match: /this\._intervalId.+?12e4\)/,
|
|
|
|
replace: ""
|
|
|
|
},
|
|
|
|
{
|
|
|
|
match: /(?<=increment=function\(\i\){)/,
|
|
|
|
replace: "return;"
|
|
|
|
}
|
|
|
|
]
|
2022-08-29 20:05:22 +00:00
|
|
|
}
|
2022-09-02 03:27:32 +00:00
|
|
|
]
|
|
|
|
});
|