2024-05-26 15:44:04 -04:00
|
|
|
/*
|
|
|
|
* Vencord, a Discord client mod
|
|
|
|
* Copyright (c) 2023 Vendicated and contributors
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
*/
|
|
|
|
|
2024-08-01 14:49:18 +02:00
|
|
|
import { migratePluginSettings } from "@api/Settings";
|
2024-05-26 15:44:04 -04:00
|
|
|
import { Devs } from "@utils/constants";
|
|
|
|
import definePlugin from "@utils/types";
|
|
|
|
|
|
|
|
// The entire code of this plugin can be found in native.ts
|
2024-08-01 14:49:18 +02:00
|
|
|
migratePluginSettings("YoutubeAdblock", "WatchTogetherAdblock");
|
2024-05-26 15:44:04 -04:00
|
|
|
export default definePlugin({
|
2024-08-01 14:49:18 +02:00
|
|
|
name: "YoutubeAdblock",
|
|
|
|
description: "Block ads in YouTube embeds and the WatchTogether activity via AdGuard",
|
|
|
|
authors: [Devs.ImLvna, Devs.Ven],
|
2024-05-26 15:44:04 -04:00
|
|
|
});
|