mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-01-26 17:26:22 +00:00
15 lines
422 B
TypeScript
15 lines
422 B
TypeScript
|
/*
|
||
|
* Vencord, a Discord client mod
|
||
|
* Copyright (c) 2023 Vendicated and contributors
|
||
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
*/
|
||
|
|
||
|
import { Devs } from "@utils/constants";
|
||
|
import definePlugin from "@utils/types";
|
||
|
|
||
|
export default definePlugin({
|
||
|
name: "FixYoutubeEmbeds",
|
||
|
description: "Bypasses youtube videos being blocked from display on Discord (for example by UMG)",
|
||
|
authors: [Devs.coolelectronics]
|
||
|
});
|