2024-02-06 16:29:47 +01:00
|
|
|
/*
|
|
|
|
* Vencord, a Discord client mod
|
|
|
|
* Copyright (c) 2024 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: "ChatInputButtonAPI",
|
|
|
|
description: "API to add buttons to the chat input",
|
|
|
|
authors: [Devs.Ven],
|
|
|
|
|
|
|
|
patches: [{
|
2024-03-27 21:27:56 +01:00
|
|
|
find: '"sticker")',
|
2024-02-06 16:29:47 +01:00
|
|
|
replacement: {
|
2024-03-27 21:27:56 +01:00
|
|
|
match: /!\i\.isMobile(?=.+?(\i)\.push\(.{0,50}"gift")/,
|
|
|
|
replace: "$& &&(Vencord.Api.ChatButtons._injectButtons($1,arguments[0]),true)"
|
2024-02-06 16:29:47 +01:00
|
|
|
}
|
|
|
|
}]
|
|
|
|
});
|