chore: init

This commit is contained in:
2025-12-27 17:29:54 +02:00
parent 7b85dc6e07
commit f07a3d8e42
4 changed files with 5 additions and 4 deletions

20
trustMeBro/index.ts Normal file
View File

@@ -0,0 +1,20 @@
/*
* Vencord, a Discord client mod
* Copyright (c) 2025 Vendicated and contributors
* SPDX-License-Identifier: GPL-3.0-or-later
*/
import definePlugin from "@utils/types";
export default definePlugin({
name: "TrustMeBro",
description: "Bypasses Discords age verification required under the UK Online Safety Act.",
authors: [{ name: "Menhera.st Team", id: 1325012503419420734n }],
start() {
const modules = Object.values((window as any).webpackChunkdiscord_app.push([[Symbol()], {}, (r: any) => r.c])) as any[];
const userStore = modules.find((x: any) => x?.exports?.default?.getCurrentUser);
const currentUser = userStore.exports.default.getCurrentUser();
currentUser.ageVerificationStatus = 3;
}
});