This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Export your favourite gifs | |
| Vencord is required or any fork of vencord | |
| paste into console using ctrl+shift+i | |
| */ | |
| (() => { | |
| // 1. Find the module that manages user settings (including fav gifs) | |
| const FrecencyUserSettings = Vencord.Webpack.find(m => m.ProtoClass?.typeName?.endsWith(".FrecencyUserSettings")); | |
| if (!FrecencyUserSettings) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static class QuickModeUtils | |
| { | |
| public static (Transform tab, Transform menu) CreateNotificationTab(string name, string text, Color color, string imageDataBase64 = null) | |
| { | |
| List<GameObject> existingTabs = Resources.FindObjectsOfTypeAll<MonoBehaviourPublicObCoGaCoObCoObCoUnique>()[0].field_Public_ArrayOf_GameObject_0.ToList(); | |
| QuickMenu quickMenu = Resources.FindObjectsOfTypeAll<QuickMenu>()[0]; | |
| // Tab |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="jszip.min.js"></script> | |
| <script src="FileSaver.min.js"></script> | |
| <script src="https://raw.githubusercontent.com/Stuk/jszip/master/dist/jszip.min.js"></script> | |
| <script src="https://raw.githubusercontent.com/eligrey/FileSaver.js/master/FileSaver.min.js"></script> | |
| (function (main, modules) { | |
| 'use strict'; | |
| var zip = new JSZip(); | |
| for (var property in modules) { |