Plugin
BetterGifPicker
Makes the gif picker open the favourite category by default
1
import { Devs } from "@utils/constants";2
import definePlugin from "@utils/types";3
4
export 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