Plugin

BetterGifPicker

Makes the gif picker open the favourite category by default

Emotes Customisation
index.ts
Download

Source

src/plugins/betterGifPicker/index.ts
1import { Devs } from "@utils/constants";
2import definePlugin from "@utils/types";
3
4export default definePlugin({
5 name: "BetterGifPicker",
6 description: "Makes the gif picker open the favourite category by default",
7 authors: [Devs.Samwich],
8 tags: ["Emotes", "Customisation"],
9 patches: [
10 {
11 find: "renderHeaderContent(){",
12 replacement: [
13 {
14 match: /(?<=state={resultType:)null/,
15 replace: &#039;"Favorites"&#039;
16 }
17 ]
18 }
19 ]
20});
21