├── .actrc.sample ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── suggestion.yml ├── act_event.json ├── actions │ ├── ci │ │ └── action.yml │ └── setup │ │ └── action.yml └── workflows │ ├── deploy.yml │ ├── weekly-merge.yml │ └── wipe-workflow-runs.yml ├── .gitignore ├── .npmrc ├── .vscode ├── extensions.json └── settings.json ├── .zed └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets ├── docs.gif └── localization.png ├── biome.json ├── crowdin.yml ├── declarations ├── @react-native-documents+picker.d.ts ├── @shopify+flash-list.d.ts ├── joi.d.ts ├── react-native-document-picker.d.ts ├── react-native-reanimated.d.ts ├── react-native-svg.d.ts ├── react-native-webview.d.ts └── reg.json ├── docs ├── ICONS.md ├── ICONS_DEV_HOW2.md ├── README.md └── TrainIcon.png ├── dprint.json ├── lang ├── defs.d.ts └── values │ ├── base │ ├── cloud_sync.json │ ├── kiryu_facecam.json │ ├── plugin_browser.json │ ├── song_spotlight.json │ ├── themes_plus.json │ ├── twemoji_everywhere.json │ └── userpfp.json │ ├── cloud_sync.json │ ├── kiryu_facecam.json │ ├── plugin_browser.json │ ├── song_spotlight.json │ ├── themes_plus.json │ ├── twemoji_everywhere.json │ └── userpfp.json ├── package.json ├── patches └── fuzzysort@3.1.0.patch ├── pnpm-lock.yaml ├── scripts ├── build │ ├── index.ts │ ├── lib │ │ ├── chart.ts │ │ └── common.ts │ ├── modules │ │ ├── docs.ts │ │ ├── jollyposting.ts │ │ ├── lang.ts │ │ ├── plugins.ts │ │ ├── readmes.ts │ │ └── workers │ │ │ ├── migration-shim.ts │ │ │ └── plugins.ts │ └── types.d.ts ├── common │ ├── dprint │ │ └── index.ts │ ├── live │ │ └── print.ts │ ├── parser │ │ └── getImports.ts │ ├── statistics │ │ └── print.ts │ └── worker │ │ ├── index.ts │ │ └── worker.mjs ├── crowdin │ ├── index.ts │ └── lib │ │ └── lang.ts ├── declarations │ ├── index.ts │ └── lib │ │ └── registry.ts ├── fs.ts ├── package.json ├── pnpm-lock.yaml ├── serve │ ├── index.ts │ ├── plink.ico │ └── types.d.ts ├── tsconfig.json └── watch │ ├── index.ts │ └── lib │ └── listDeps.ts ├── src ├── global.d.ts ├── plugins │ ├── app-directory │ │ ├── README.md │ │ ├── manifest.json │ │ ├── src │ │ │ ├── components │ │ │ │ ├── ManageGuildSection.tsx │ │ │ │ ├── markdown │ │ │ │ │ └── SmartImage.tsx │ │ │ │ └── pages │ │ │ │ │ ├── AppDirectoryPage.tsx │ │ │ │ │ └── AppInfoPage.tsx │ │ │ ├── index.ts │ │ │ └── stuff │ │ │ │ ├── api.ts │ │ │ │ ├── markdown.tsx │ │ │ │ ├── oauth2.ts │ │ │ │ ├── patcher.ts │ │ │ │ └── util.ts │ │ └── status.json │ ├── char-counter │ │ ├── README.md │ │ ├── manifest.json │ │ ├── src │ │ │ ├── components │ │ │ │ ├── CharCounter.tsx │ │ │ │ ├── Settings.tsx │ │ │ │ └── SimpleCharCounter.tsx │ │ │ ├── index.ts │ │ │ └── stuff │ │ │ │ ├── getMessageLength.tsx │ │ │ │ └── patcher.ts │ │ └── status.json │ ├── clean-urls │ │ ├── README.md │ │ ├── manifest.json │ │ ├── src │ │ │ ├── components │ │ │ │ └── Settings.tsx │ │ │ ├── index.ts │ │ │ ├── stores │ │ │ │ └── RulesStore.ts │ │ │ └── stuff │ │ │ │ ├── patcher.ts │ │ │ │ └── rules.ts │ │ └── status.json │ ├── cloud-sync │ │ ├── README.md │ │ ├── manifest.json │ │ ├── src │ │ │ ├── components │ │ │ │ ├── DataStat.tsx │ │ │ │ ├── NerdConfig.tsx │ │ │ │ ├── Settings.tsx │ │ │ │ ├── pages │ │ │ │ │ ├── IgnoredPluginsPage.tsx │ │ │ │ │ └── ImportLogsPage.tsx │ │ │ │ └── sheets │ │ │ │ │ ├── ImportActionSheet.tsx │ │ │ │ │ ├── TooMuchDataSheet.tsx │ │ │ │ │ └── WwyltdSheet.tsx │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── stores │ │ │ │ ├── AuthorizationStore.ts │ │ │ │ └── CacheStore.ts │ │ │ ├── stuff │ │ │ │ ├── api.ts │ │ │ │ ├── files.ts │ │ │ │ ├── fonts.ts │ │ │ │ ├── http.ts │ │ │ │ ├── oauth2.ts │ │ │ │ ├── patcher.tsx │ │ │ │ └── syncStuff.ts │ │ │ └── types.ts │ │ └── status.json │ ├── customrpc │ │ ├── README.md │ │ ├── manifest.json │ │ ├── src │ │ │ ├── components │ │ │ │ ├── RPCPreview.tsx │ │ │ │ ├── Settings.tsx │ │ │ │ └── pages │ │ │ │ │ ├── ApplicationList.tsx │ │ │ │ │ ├── LiveRawActivityView.tsx │ │ │ │ │ ├── ProfileList.tsx │ │ │ │ │ └── RichAssetList.tsx │ │ │ ├── index.ts │ │ │ └── stuff │ │ │ │ ├── activity.ts │ │ │ │ ├── api.ts │ │ │ │ ├── autochange.ts │ │ │ │ ├── presetProfiles.ts │ │ │ │ ├── prompts.tsx │ │ │ │ ├── util.ts │ │ │ │ └── variables.ts │ │ └── status.json │ ├── doom │ │ ├── README.md │ │ ├── assets │ │ │ ├── webview.css │ │ │ └── webview.html │ │ ├── manifest.json │ │ ├── src │ │ │ ├── components │ │ │ │ ├── App.tsx │ │ │ │ └── sheets │ │ │ │ │ └── SettingsActionSheet.tsx │ │ │ ├── index.ts │ │ │ └── stuff │ │ │ │ ├── files.ts │ │ │ │ ├── lib │ │ │ │ └── manifest.ts │ │ │ │ └── store.ts │ │ └── status.json │ ├── kiryu-facecam │ │ ├── README.md │ │ ├── assets │ │ │ └── kazuma.png │ │ ├── manifest.json │ │ ├── src │ │ │ ├── components │ │ │ │ ├── Kiryu.tsx │ │ │ │ ├── Settings.tsx │ │ │ │ └── hooks │ │ │ │ │ └── useOpen.ts │ │ │ ├── index.ts │ │ │ └── stuff │ │ │ │ ├── frames.ts │ │ │ │ └── patcher.ts │ │ └── status.json │ ├── local-pins │ │ ├── README.md │ │ ├── manifest.json │ │ ├── src │ │ │ ├── components │ │ │ │ ├── ChannelPinsRow.tsx │ │ │ │ ├── MessageActionSheetButton.tsx │ │ │ │ ├── RedesignChannelPinsRow.tsx │ │ │ │ ├── Settings.tsx │ │ │ │ ├── modals │ │ │ │ │ ├── ChannelPinsModal.tsx │ │ │ │ │ └── LocalPinnedModal.tsx │ │ │ │ ├── screens │ │ │ │ │ └── PinsScreen.tsx │ │ │ │ └── sheets │ │ │ │ │ └── FiltersActionSheet.tsx │ │ │ ├── hooks │ │ │ │ └── useLocalPinned.ts │ │ │ ├── index.ts │ │ │ └── stuff │ │ │ │ └── patcher.ts │ │ └── status.json │ ├── message-preview │ │ ├── README.md │ │ ├── manifest.json │ │ ├── src │ │ │ ├── components │ │ │ │ ├── PreviewButton.tsx │ │ │ │ └── Settings.tsx │ │ │ ├── index.ts │ │ │ └── stuff │ │ │ │ ├── openPreview.tsx │ │ │ │ └── patcher.ts │ │ └── status.json │ ├── monet-theme │ │ ├── README.md │ │ ├── assets │ │ │ ├── backgrounds │ │ │ │ └── pixel4l │ │ │ │ │ ├── cinnamon.png │ │ │ │ │ ├── default.png │ │ │ │ │ ├── green.png │ │ │ │ │ ├── ocean.png │ │ │ │ │ ├── orchid.png │ │ │ │ │ ├── purple.png │ │ │ │ │ ├── space.png │ │ │ │ │ └── white.png │ │ │ └── icons │ │ │ │ ├── RepainterIcon.png │ │ │ │ └── tpconfig.json │ │ ├── manifest.json │ │ ├── src │ │ │ ├── components │ │ │ │ ├── Color.tsx │ │ │ │ ├── Commit.tsx │ │ │ │ ├── Settings.tsx │ │ │ │ ├── hooks │ │ │ │ │ ├── useCommits.ts │ │ │ │ │ └── usePatches.ts │ │ │ │ ├── pages │ │ │ │ │ ├── CommitsPage.tsx │ │ │ │ │ └── ConfigurePage.tsx │ │ │ │ └── sheets │ │ │ │ │ └── AddBackgroundSheet.tsx │ │ │ ├── index.ts │ │ │ ├── stuff │ │ │ │ ├── buildTheme.ts │ │ │ │ ├── colors.ts │ │ │ │ ├── conventionalCommits.ts │ │ │ │ ├── jsoncParser.ts │ │ │ │ ├── material │ │ │ │ │ ├── cam16.ts │ │ │ │ │ ├── hctsolver.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── repainter.ts │ │ │ │ └── wallpapers.ts │ │ │ └── types.d.ts │ │ └── status.json │ ├── nexxutils │ │ ├── README.md │ │ ├── assets │ │ │ ├── ColorfulChannels │ │ │ │ ├── announcement │ │ │ │ │ ├── lock.png │ │ │ │ │ └── warning.png │ │ │ │ ├── controller.png │ │ │ │ ├── forum │ │ │ │ │ ├── lock.png │ │ │ │ │ └── warning.png │ │ │ │ ├── image │ │ │ │ │ ├── lock.png │ │ │ │ │ └── warning.png │ │ │ │ ├── lock.png │ │ │ │ ├── lockBottom.png │ │ │ │ ├── stage │ │ │ │ │ └── lock.png │ │ │ │ ├── text │ │ │ │ │ ├── controller.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── warning.png │ │ │ │ ├── tpconfig.json │ │ │ │ ├── voice │ │ │ │ │ ├── lock.png │ │ │ │ │ └── warning.png │ │ │ │ ├── warning.png │ │ │ │ └── warningBottom.png │ │ │ ├── MiniMod │ │ │ │ ├── NerdEmoji.png │ │ │ │ └── tpconfig.json │ │ │ └── SpotifyListenAlong │ │ │ │ ├── UserPlayIcon.png │ │ │ │ └── tpconfig.json │ │ ├── manifest.json │ │ ├── src │ │ │ ├── components │ │ │ │ ├── Header.tsx │ │ │ │ ├── ModuleInfo.tsx │ │ │ │ ├── ModuleOption.tsx │ │ │ │ ├── Settings.tsx │ │ │ │ ├── SillyAvatar.tsx │ │ │ │ ├── modals │ │ │ │ │ └── ErrorViewerModal.tsx │ │ │ │ └── pages │ │ │ │ │ └── ModulePage.tsx │ │ │ ├── index.ts │ │ │ ├── modules │ │ │ │ ├── BetterComponents │ │ │ │ │ ├── components │ │ │ │ │ │ ├── M3Dialog │ │ │ │ │ │ │ ├── TextButton.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── M3Snackbar.tsx │ │ │ │ │ │ └── M3Switch │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── styles.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── ColorfulChannels │ │ │ │ │ ├── dark.png │ │ │ │ │ ├── index.ts │ │ │ │ │ └── light.png │ │ │ │ ├── Minimod │ │ │ │ │ ├── dark.png │ │ │ │ │ ├── index.ts │ │ │ │ │ └── light.png │ │ │ │ ├── SendSpotifyInvite │ │ │ │ │ ├── components │ │ │ │ │ │ └── InviteButton.tsx │ │ │ │ │ ├── dark.png │ │ │ │ │ ├── index.ts │ │ │ │ │ └── light.png │ │ │ │ ├── SpotifyListenAlong │ │ │ │ │ ├── components │ │ │ │ │ │ ├── ClassicListenButton.tsx │ │ │ │ │ │ ├── SimplifiedListenButton.tsx │ │ │ │ │ │ └── core.ts │ │ │ │ │ ├── dark.png │ │ │ │ │ ├── index.ts │ │ │ │ │ └── light.png │ │ │ │ ├── TenorGifFix │ │ │ │ │ ├── dark.png │ │ │ │ │ ├── index.ts │ │ │ │ │ └── light.png │ │ │ │ └── index.ts │ │ │ └── stuff │ │ │ │ ├── Module.tsx │ │ │ │ └── devtools.ts │ │ └── status.json │ ├── plugin-browser │ │ ├── README.md │ │ ├── assets │ │ │ ├── SortDateNewestIcon.png │ │ │ ├── SortDateOldestIcon.png │ │ │ ├── SortNameAZIcon.png │ │ │ ├── SortNameZAIcon.png │ │ │ └── tpconfig.json │ │ ├── manifest.json │ │ ├── src │ │ │ ├── components │ │ │ │ ├── Card.tsx │ │ │ │ ├── PluginCard.tsx │ │ │ │ ├── Search.tsx │ │ │ │ ├── Settings.tsx │ │ │ │ ├── hooks │ │ │ │ │ └── usePlugin.ts │ │ │ │ └── pages │ │ │ │ │ └── PluginBrowserPage.tsx │ │ │ ├── index.ts │ │ │ ├── stuff │ │ │ │ ├── constants.ts │ │ │ │ ├── patcher.tsx │ │ │ │ ├── pluginChecker.ts │ │ │ │ └── util.ts │ │ │ └── types.ts │ │ └── status.json │ ├── plugin-embeds │ │ ├── README.md │ │ ├── manifest.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── stuff │ │ │ │ ├── messages.ts │ │ │ │ ├── patcher.ts │ │ │ │ ├── plugins.ts │ │ │ │ └── whitelist.ts │ │ └── status.json │ ├── rejuvenate.dev │ │ ├── README.md │ │ ├── manifest.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── stuff │ │ │ │ ├── constants.ts │ │ │ │ └── ws.ts │ │ └── status.json │ ├── song-spotlight │ │ ├── README.md │ │ ├── assets │ │ │ ├── card │ │ │ │ ├── next.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── play.svg │ │ │ │ └── spotifyAudioWebView.html │ │ │ └── images │ │ │ │ ├── player │ │ │ │ ├── FastForwardIcon.png │ │ │ │ ├── FastForwardShuffleIcon.png │ │ │ │ └── PlayShuffleIcon.png │ │ │ │ ├── services │ │ │ │ ├── AppleMusicIcon.png │ │ │ │ └── SoundcloudIcon.png │ │ │ │ └── tpconfig.json │ │ ├── manifest.json │ │ ├── src │ │ │ ├── components │ │ │ │ ├── AudioPlayer.tsx │ │ │ │ ├── ProfileSongs.tsx │ │ │ │ ├── Settings.tsx │ │ │ │ └── songs │ │ │ │ │ ├── AddSong.tsx │ │ │ │ │ ├── EntrySong.tsx │ │ │ │ │ ├── ProfileSong.tsx │ │ │ │ │ └── SongInfo.tsx │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── stores │ │ │ │ ├── AuthorizationStore.ts │ │ │ │ └── CacheStore.ts │ │ │ ├── stuff │ │ │ │ ├── api.ts │ │ │ │ ├── oauth2.ts │ │ │ │ ├── patcher.ts │ │ │ │ └── songs │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── info.ts │ │ │ │ │ └── parse.ts │ │ │ └── types.ts │ │ └── status.json │ ├── tenor-gif-fix │ │ ├── README.md │ │ ├── manifest.json │ │ ├── src │ │ │ └── index.ts │ │ └── status.json │ ├── themes-plus │ │ ├── README.md │ │ ├── assets │ │ │ └── check.png │ │ ├── manifest.json │ │ ├── src │ │ │ ├── components │ │ │ │ ├── IconpackRow.tsx │ │ │ │ ├── ProgressCircle.tsx │ │ │ │ ├── Settings.tsx │ │ │ │ └── modals │ │ │ │ │ ├── ConfigModal.tsx │ │ │ │ │ └── tabs │ │ │ │ │ └── IconpackTab.tsx │ │ │ ├── index.tsx │ │ │ ├── patches │ │ │ │ ├── icons.tsx │ │ │ │ └── mentionLineColor.ts │ │ │ ├── stores │ │ │ │ └── CacheStore.ts │ │ │ ├── stuff │ │ │ │ ├── active.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── iconOverlays.tsx │ │ │ │ ├── iconpackDataGetter.ts │ │ │ │ ├── loader.tsx │ │ │ │ ├── modIcons.ts │ │ │ │ ├── packInstaller.ts │ │ │ │ ├── resolveColor.ts │ │ │ │ └── util.ts │ │ │ └── types.d.ts │ │ └── status.json │ ├── twemoji-everywhere │ │ ├── README.md │ │ ├── manifest.json │ │ ├── src │ │ │ ├── components │ │ │ │ ├── CustomTwemoji.tsx │ │ │ │ └── Settings.tsx │ │ │ ├── index.ts │ │ │ └── stuff │ │ │ │ ├── packs.ts │ │ │ │ ├── parser.ts │ │ │ │ └── patcher.ts │ │ └── status.json │ ├── use-system-emoji │ │ ├── README.md │ │ ├── manifest.json │ │ ├── src │ │ │ └── index.ts │ │ └── status.json │ └── userpfp │ │ ├── README.md │ │ ├── manifest.json │ │ ├── src │ │ ├── index.ts │ │ ├── stuff │ │ │ └── patcher.ts │ │ └── types.d.ts │ │ └── status.json └── stuff │ ├── components │ ├── ActionSheet.tsx │ ├── AutoRow.tsx │ ├── BetterTableRow.tsx │ ├── InlineCheckbox.tsx │ ├── InputAlert.tsx │ ├── Modal.tsx │ ├── RichText.tsx │ ├── ScaleRowButton.tsx │ ├── Skeleton.tsx │ ├── SliderIcon.tsx │ ├── SmartMention.tsx │ ├── SuperAwesomeIcon.tsx │ ├── Text.tsx │ ├── TextBadge.tsx │ └── sheets │ │ └── ChooseSheet.tsx │ ├── constants.ts │ ├── crowdin.mjs │ ├── deps.ts │ ├── hooks │ └── usePromise.ts │ ├── lang │ ├── LangStore.ts │ └── index.tsx │ ├── lib │ ├── intlProxy.ts │ ├── pinToSettings │ │ ├── index.ts │ │ ├── panel.tsx │ │ └── tabs.tsx │ ├── redesign │ │ ├── index.tsx │ │ └── types.ts │ └── ui.ts │ ├── migration.tsx │ ├── types.tsx │ └── typings.d.ts └── tsconfig.json /.actrc.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/.actrc.sample -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggestion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/.github/ISSUE_TEMPLATE/suggestion.yml -------------------------------------------------------------------------------- /.github/act_event.json: -------------------------------------------------------------------------------- 1 | { 2 | "act": true 3 | } 4 | -------------------------------------------------------------------------------- /.github/actions/ci/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/.github/actions/ci/action.yml -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/weekly-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/.github/workflows/weekly-merge.yml -------------------------------------------------------------------------------- /.github/workflows/wipe-workflow-runs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/.github/workflows/wipe-workflow-runs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.zed/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/.zed/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/README.md -------------------------------------------------------------------------------- /assets/docs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/assets/docs.gif -------------------------------------------------------------------------------- /assets/localization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/assets/localization.png -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/biome.json -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/crowdin.yml -------------------------------------------------------------------------------- /declarations/@react-native-documents+picker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/declarations/@react-native-documents+picker.d.ts -------------------------------------------------------------------------------- /declarations/@shopify+flash-list.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/declarations/@shopify+flash-list.d.ts -------------------------------------------------------------------------------- /declarations/joi.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/declarations/joi.d.ts -------------------------------------------------------------------------------- /declarations/react-native-document-picker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/declarations/react-native-document-picker.d.ts -------------------------------------------------------------------------------- /declarations/react-native-reanimated.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/declarations/react-native-reanimated.d.ts -------------------------------------------------------------------------------- /declarations/react-native-svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/declarations/react-native-svg.d.ts -------------------------------------------------------------------------------- /declarations/react-native-webview.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/declarations/react-native-webview.d.ts -------------------------------------------------------------------------------- /declarations/reg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/declarations/reg.json -------------------------------------------------------------------------------- /docs/ICONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/docs/ICONS.md -------------------------------------------------------------------------------- /docs/ICONS_DEV_HOW2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/docs/ICONS_DEV_HOW2.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/TrainIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/docs/TrainIcon.png -------------------------------------------------------------------------------- /dprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/dprint.json -------------------------------------------------------------------------------- /lang/defs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/lang/defs.d.ts -------------------------------------------------------------------------------- /lang/values/base/cloud_sync.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/lang/values/base/cloud_sync.json -------------------------------------------------------------------------------- /lang/values/base/kiryu_facecam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/lang/values/base/kiryu_facecam.json -------------------------------------------------------------------------------- /lang/values/base/plugin_browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/lang/values/base/plugin_browser.json -------------------------------------------------------------------------------- /lang/values/base/song_spotlight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/lang/values/base/song_spotlight.json -------------------------------------------------------------------------------- /lang/values/base/themes_plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/lang/values/base/themes_plus.json -------------------------------------------------------------------------------- /lang/values/base/twemoji_everywhere.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/lang/values/base/twemoji_everywhere.json -------------------------------------------------------------------------------- /lang/values/base/userpfp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/lang/values/base/userpfp.json -------------------------------------------------------------------------------- /lang/values/cloud_sync.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/lang/values/cloud_sync.json -------------------------------------------------------------------------------- /lang/values/kiryu_facecam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/lang/values/kiryu_facecam.json -------------------------------------------------------------------------------- /lang/values/plugin_browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/lang/values/plugin_browser.json -------------------------------------------------------------------------------- /lang/values/song_spotlight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/lang/values/song_spotlight.json -------------------------------------------------------------------------------- /lang/values/themes_plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/lang/values/themes_plus.json -------------------------------------------------------------------------------- /lang/values/twemoji_everywhere.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/lang/values/twemoji_everywhere.json -------------------------------------------------------------------------------- /lang/values/userpfp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/lang/values/userpfp.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/package.json -------------------------------------------------------------------------------- /patches/fuzzysort@3.1.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/patches/fuzzysort@3.1.0.patch -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /scripts/build/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/build/index.ts -------------------------------------------------------------------------------- /scripts/build/lib/chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/build/lib/chart.ts -------------------------------------------------------------------------------- /scripts/build/lib/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/build/lib/common.ts -------------------------------------------------------------------------------- /scripts/build/modules/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/build/modules/docs.ts -------------------------------------------------------------------------------- /scripts/build/modules/jollyposting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/build/modules/jollyposting.ts -------------------------------------------------------------------------------- /scripts/build/modules/lang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/build/modules/lang.ts -------------------------------------------------------------------------------- /scripts/build/modules/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/build/modules/plugins.ts -------------------------------------------------------------------------------- /scripts/build/modules/readmes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/build/modules/readmes.ts -------------------------------------------------------------------------------- /scripts/build/modules/workers/migration-shim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/build/modules/workers/migration-shim.ts -------------------------------------------------------------------------------- /scripts/build/modules/workers/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/build/modules/workers/plugins.ts -------------------------------------------------------------------------------- /scripts/build/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/build/types.d.ts -------------------------------------------------------------------------------- /scripts/common/dprint/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/common/dprint/index.ts -------------------------------------------------------------------------------- /scripts/common/live/print.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/common/live/print.ts -------------------------------------------------------------------------------- /scripts/common/parser/getImports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/common/parser/getImports.ts -------------------------------------------------------------------------------- /scripts/common/statistics/print.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/common/statistics/print.ts -------------------------------------------------------------------------------- /scripts/common/worker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/common/worker/index.ts -------------------------------------------------------------------------------- /scripts/common/worker/worker.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/common/worker/worker.mjs -------------------------------------------------------------------------------- /scripts/crowdin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/crowdin/index.ts -------------------------------------------------------------------------------- /scripts/crowdin/lib/lang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/crowdin/lib/lang.ts -------------------------------------------------------------------------------- /scripts/declarations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/declarations/index.ts -------------------------------------------------------------------------------- /scripts/declarations/lib/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/declarations/lib/registry.ts -------------------------------------------------------------------------------- /scripts/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/fs.ts -------------------------------------------------------------------------------- /scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/package.json -------------------------------------------------------------------------------- /scripts/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/pnpm-lock.yaml -------------------------------------------------------------------------------- /scripts/serve/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/serve/index.ts -------------------------------------------------------------------------------- /scripts/serve/plink.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/serve/plink.ico -------------------------------------------------------------------------------- /scripts/serve/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/serve/types.d.ts -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/tsconfig.json -------------------------------------------------------------------------------- /scripts/watch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/watch/index.ts -------------------------------------------------------------------------------- /scripts/watch/lib/listDeps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/scripts/watch/lib/listDeps.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/plugins/app-directory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/app-directory/README.md -------------------------------------------------------------------------------- /src/plugins/app-directory/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/app-directory/manifest.json -------------------------------------------------------------------------------- /src/plugins/app-directory/src/components/ManageGuildSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/app-directory/src/components/ManageGuildSection.tsx -------------------------------------------------------------------------------- /src/plugins/app-directory/src/components/markdown/SmartImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/app-directory/src/components/markdown/SmartImage.tsx -------------------------------------------------------------------------------- /src/plugins/app-directory/src/components/pages/AppDirectoryPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/app-directory/src/components/pages/AppDirectoryPage.tsx -------------------------------------------------------------------------------- /src/plugins/app-directory/src/components/pages/AppInfoPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/app-directory/src/components/pages/AppInfoPage.tsx -------------------------------------------------------------------------------- /src/plugins/app-directory/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/app-directory/src/index.ts -------------------------------------------------------------------------------- /src/plugins/app-directory/src/stuff/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/app-directory/src/stuff/api.ts -------------------------------------------------------------------------------- /src/plugins/app-directory/src/stuff/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/app-directory/src/stuff/markdown.tsx -------------------------------------------------------------------------------- /src/plugins/app-directory/src/stuff/oauth2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/app-directory/src/stuff/oauth2.ts -------------------------------------------------------------------------------- /src/plugins/app-directory/src/stuff/patcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/app-directory/src/stuff/patcher.ts -------------------------------------------------------------------------------- /src/plugins/app-directory/src/stuff/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/app-directory/src/stuff/util.ts -------------------------------------------------------------------------------- /src/plugins/app-directory/status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "broken" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/char-counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/char-counter/README.md -------------------------------------------------------------------------------- /src/plugins/char-counter/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/char-counter/manifest.json -------------------------------------------------------------------------------- /src/plugins/char-counter/src/components/CharCounter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/char-counter/src/components/CharCounter.tsx -------------------------------------------------------------------------------- /src/plugins/char-counter/src/components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/char-counter/src/components/Settings.tsx -------------------------------------------------------------------------------- /src/plugins/char-counter/src/components/SimpleCharCounter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/char-counter/src/components/SimpleCharCounter.tsx -------------------------------------------------------------------------------- /src/plugins/char-counter/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/char-counter/src/index.ts -------------------------------------------------------------------------------- /src/plugins/char-counter/src/stuff/getMessageLength.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/char-counter/src/stuff/getMessageLength.tsx -------------------------------------------------------------------------------- /src/plugins/char-counter/src/stuff/patcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/char-counter/src/stuff/patcher.ts -------------------------------------------------------------------------------- /src/plugins/char-counter/status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "finished" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/clean-urls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/clean-urls/README.md -------------------------------------------------------------------------------- /src/plugins/clean-urls/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/clean-urls/manifest.json -------------------------------------------------------------------------------- /src/plugins/clean-urls/src/components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/clean-urls/src/components/Settings.tsx -------------------------------------------------------------------------------- /src/plugins/clean-urls/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/clean-urls/src/index.ts -------------------------------------------------------------------------------- /src/plugins/clean-urls/src/stores/RulesStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/clean-urls/src/stores/RulesStore.ts -------------------------------------------------------------------------------- /src/plugins/clean-urls/src/stuff/patcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/clean-urls/src/stuff/patcher.ts -------------------------------------------------------------------------------- /src/plugins/clean-urls/src/stuff/rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/clean-urls/src/stuff/rules.ts -------------------------------------------------------------------------------- /src/plugins/clean-urls/status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "finished" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/cloud-sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/README.md -------------------------------------------------------------------------------- /src/plugins/cloud-sync/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/manifest.json -------------------------------------------------------------------------------- /src/plugins/cloud-sync/src/components/DataStat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/src/components/DataStat.tsx -------------------------------------------------------------------------------- /src/plugins/cloud-sync/src/components/NerdConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/src/components/NerdConfig.tsx -------------------------------------------------------------------------------- /src/plugins/cloud-sync/src/components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/src/components/Settings.tsx -------------------------------------------------------------------------------- /src/plugins/cloud-sync/src/components/pages/IgnoredPluginsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/src/components/pages/IgnoredPluginsPage.tsx -------------------------------------------------------------------------------- /src/plugins/cloud-sync/src/components/pages/ImportLogsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/src/components/pages/ImportLogsPage.tsx -------------------------------------------------------------------------------- /src/plugins/cloud-sync/src/components/sheets/ImportActionSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/src/components/sheets/ImportActionSheet.tsx -------------------------------------------------------------------------------- /src/plugins/cloud-sync/src/components/sheets/TooMuchDataSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/src/components/sheets/TooMuchDataSheet.tsx -------------------------------------------------------------------------------- /src/plugins/cloud-sync/src/components/sheets/WwyltdSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/src/components/sheets/WwyltdSheet.tsx -------------------------------------------------------------------------------- /src/plugins/cloud-sync/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/src/constants.ts -------------------------------------------------------------------------------- /src/plugins/cloud-sync/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/src/index.ts -------------------------------------------------------------------------------- /src/plugins/cloud-sync/src/stores/AuthorizationStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/src/stores/AuthorizationStore.ts -------------------------------------------------------------------------------- /src/plugins/cloud-sync/src/stores/CacheStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/src/stores/CacheStore.ts -------------------------------------------------------------------------------- /src/plugins/cloud-sync/src/stuff/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/src/stuff/api.ts -------------------------------------------------------------------------------- /src/plugins/cloud-sync/src/stuff/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/src/stuff/files.ts -------------------------------------------------------------------------------- /src/plugins/cloud-sync/src/stuff/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/src/stuff/fonts.ts -------------------------------------------------------------------------------- /src/plugins/cloud-sync/src/stuff/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/src/stuff/http.ts -------------------------------------------------------------------------------- /src/plugins/cloud-sync/src/stuff/oauth2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/src/stuff/oauth2.ts -------------------------------------------------------------------------------- /src/plugins/cloud-sync/src/stuff/patcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/src/stuff/patcher.tsx -------------------------------------------------------------------------------- /src/plugins/cloud-sync/src/stuff/syncStuff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/src/stuff/syncStuff.ts -------------------------------------------------------------------------------- /src/plugins/cloud-sync/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/src/types.ts -------------------------------------------------------------------------------- /src/plugins/cloud-sync/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/cloud-sync/status.json -------------------------------------------------------------------------------- /src/plugins/customrpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/customrpc/README.md -------------------------------------------------------------------------------- /src/plugins/customrpc/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/customrpc/manifest.json -------------------------------------------------------------------------------- /src/plugins/customrpc/src/components/RPCPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/customrpc/src/components/RPCPreview.tsx -------------------------------------------------------------------------------- /src/plugins/customrpc/src/components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/customrpc/src/components/Settings.tsx -------------------------------------------------------------------------------- /src/plugins/customrpc/src/components/pages/ApplicationList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/customrpc/src/components/pages/ApplicationList.tsx -------------------------------------------------------------------------------- /src/plugins/customrpc/src/components/pages/LiveRawActivityView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/customrpc/src/components/pages/LiveRawActivityView.tsx -------------------------------------------------------------------------------- /src/plugins/customrpc/src/components/pages/ProfileList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/customrpc/src/components/pages/ProfileList.tsx -------------------------------------------------------------------------------- /src/plugins/customrpc/src/components/pages/RichAssetList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/customrpc/src/components/pages/RichAssetList.tsx -------------------------------------------------------------------------------- /src/plugins/customrpc/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/customrpc/src/index.ts -------------------------------------------------------------------------------- /src/plugins/customrpc/src/stuff/activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/customrpc/src/stuff/activity.ts -------------------------------------------------------------------------------- /src/plugins/customrpc/src/stuff/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/customrpc/src/stuff/api.ts -------------------------------------------------------------------------------- /src/plugins/customrpc/src/stuff/autochange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/customrpc/src/stuff/autochange.ts -------------------------------------------------------------------------------- /src/plugins/customrpc/src/stuff/presetProfiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/customrpc/src/stuff/presetProfiles.ts -------------------------------------------------------------------------------- /src/plugins/customrpc/src/stuff/prompts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/customrpc/src/stuff/prompts.tsx -------------------------------------------------------------------------------- /src/plugins/customrpc/src/stuff/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/customrpc/src/stuff/util.ts -------------------------------------------------------------------------------- /src/plugins/customrpc/src/stuff/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/customrpc/src/stuff/variables.ts -------------------------------------------------------------------------------- /src/plugins/customrpc/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/customrpc/status.json -------------------------------------------------------------------------------- /src/plugins/doom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/doom/README.md -------------------------------------------------------------------------------- /src/plugins/doom/assets/webview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/doom/assets/webview.css -------------------------------------------------------------------------------- /src/plugins/doom/assets/webview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/doom/assets/webview.html -------------------------------------------------------------------------------- /src/plugins/doom/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/doom/manifest.json -------------------------------------------------------------------------------- /src/plugins/doom/src/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/doom/src/components/App.tsx -------------------------------------------------------------------------------- /src/plugins/doom/src/components/sheets/SettingsActionSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/doom/src/components/sheets/SettingsActionSheet.tsx -------------------------------------------------------------------------------- /src/plugins/doom/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/doom/src/index.ts -------------------------------------------------------------------------------- /src/plugins/doom/src/stuff/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/doom/src/stuff/files.ts -------------------------------------------------------------------------------- /src/plugins/doom/src/stuff/lib/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/doom/src/stuff/lib/manifest.ts -------------------------------------------------------------------------------- /src/plugins/doom/src/stuff/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/doom/src/stuff/store.ts -------------------------------------------------------------------------------- /src/plugins/doom/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/doom/status.json -------------------------------------------------------------------------------- /src/plugins/kiryu-facecam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/kiryu-facecam/README.md -------------------------------------------------------------------------------- /src/plugins/kiryu-facecam/assets/kazuma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/kiryu-facecam/assets/kazuma.png -------------------------------------------------------------------------------- /src/plugins/kiryu-facecam/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/kiryu-facecam/manifest.json -------------------------------------------------------------------------------- /src/plugins/kiryu-facecam/src/components/Kiryu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/kiryu-facecam/src/components/Kiryu.tsx -------------------------------------------------------------------------------- /src/plugins/kiryu-facecam/src/components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/kiryu-facecam/src/components/Settings.tsx -------------------------------------------------------------------------------- /src/plugins/kiryu-facecam/src/components/hooks/useOpen.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/kiryu-facecam/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/kiryu-facecam/src/index.ts -------------------------------------------------------------------------------- /src/plugins/kiryu-facecam/src/stuff/frames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/kiryu-facecam/src/stuff/frames.ts -------------------------------------------------------------------------------- /src/plugins/kiryu-facecam/src/stuff/patcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/kiryu-facecam/src/stuff/patcher.ts -------------------------------------------------------------------------------- /src/plugins/kiryu-facecam/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/kiryu-facecam/status.json -------------------------------------------------------------------------------- /src/plugins/local-pins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/local-pins/README.md -------------------------------------------------------------------------------- /src/plugins/local-pins/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/local-pins/manifest.json -------------------------------------------------------------------------------- /src/plugins/local-pins/src/components/ChannelPinsRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/local-pins/src/components/ChannelPinsRow.tsx -------------------------------------------------------------------------------- /src/plugins/local-pins/src/components/MessageActionSheetButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/local-pins/src/components/MessageActionSheetButton.tsx -------------------------------------------------------------------------------- /src/plugins/local-pins/src/components/RedesignChannelPinsRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/local-pins/src/components/RedesignChannelPinsRow.tsx -------------------------------------------------------------------------------- /src/plugins/local-pins/src/components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/local-pins/src/components/Settings.tsx -------------------------------------------------------------------------------- /src/plugins/local-pins/src/components/modals/ChannelPinsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/local-pins/src/components/modals/ChannelPinsModal.tsx -------------------------------------------------------------------------------- /src/plugins/local-pins/src/components/modals/LocalPinnedModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/local-pins/src/components/modals/LocalPinnedModal.tsx -------------------------------------------------------------------------------- /src/plugins/local-pins/src/components/screens/PinsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/local-pins/src/components/screens/PinsScreen.tsx -------------------------------------------------------------------------------- /src/plugins/local-pins/src/components/sheets/FiltersActionSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/local-pins/src/components/sheets/FiltersActionSheet.tsx -------------------------------------------------------------------------------- /src/plugins/local-pins/src/hooks/useLocalPinned.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/local-pins/src/hooks/useLocalPinned.ts -------------------------------------------------------------------------------- /src/plugins/local-pins/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/local-pins/src/index.ts -------------------------------------------------------------------------------- /src/plugins/local-pins/src/stuff/patcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/local-pins/src/stuff/patcher.ts -------------------------------------------------------------------------------- /src/plugins/local-pins/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/local-pins/status.json -------------------------------------------------------------------------------- /src/plugins/message-preview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/message-preview/README.md -------------------------------------------------------------------------------- /src/plugins/message-preview/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/message-preview/manifest.json -------------------------------------------------------------------------------- /src/plugins/message-preview/src/components/PreviewButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/message-preview/src/components/PreviewButton.tsx -------------------------------------------------------------------------------- /src/plugins/message-preview/src/components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/message-preview/src/components/Settings.tsx -------------------------------------------------------------------------------- /src/plugins/message-preview/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/message-preview/src/index.ts -------------------------------------------------------------------------------- /src/plugins/message-preview/src/stuff/openPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/message-preview/src/stuff/openPreview.tsx -------------------------------------------------------------------------------- /src/plugins/message-preview/src/stuff/patcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/message-preview/src/stuff/patcher.ts -------------------------------------------------------------------------------- /src/plugins/message-preview/status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "finished" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/monet-theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/README.md -------------------------------------------------------------------------------- /src/plugins/monet-theme/assets/backgrounds/pixel4l/cinnamon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/assets/backgrounds/pixel4l/cinnamon.png -------------------------------------------------------------------------------- /src/plugins/monet-theme/assets/backgrounds/pixel4l/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/assets/backgrounds/pixel4l/default.png -------------------------------------------------------------------------------- /src/plugins/monet-theme/assets/backgrounds/pixel4l/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/assets/backgrounds/pixel4l/green.png -------------------------------------------------------------------------------- /src/plugins/monet-theme/assets/backgrounds/pixel4l/ocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/assets/backgrounds/pixel4l/ocean.png -------------------------------------------------------------------------------- /src/plugins/monet-theme/assets/backgrounds/pixel4l/orchid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/assets/backgrounds/pixel4l/orchid.png -------------------------------------------------------------------------------- /src/plugins/monet-theme/assets/backgrounds/pixel4l/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/assets/backgrounds/pixel4l/purple.png -------------------------------------------------------------------------------- /src/plugins/monet-theme/assets/backgrounds/pixel4l/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/assets/backgrounds/pixel4l/space.png -------------------------------------------------------------------------------- /src/plugins/monet-theme/assets/backgrounds/pixel4l/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/assets/backgrounds/pixel4l/white.png -------------------------------------------------------------------------------- /src/plugins/monet-theme/assets/icons/RepainterIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/assets/icons/RepainterIcon.png -------------------------------------------------------------------------------- /src/plugins/monet-theme/assets/icons/tpconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "root": "MonetTheme" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/monet-theme/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/manifest.json -------------------------------------------------------------------------------- /src/plugins/monet-theme/src/components/Color.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/src/components/Color.tsx -------------------------------------------------------------------------------- /src/plugins/monet-theme/src/components/Commit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/src/components/Commit.tsx -------------------------------------------------------------------------------- /src/plugins/monet-theme/src/components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/src/components/Settings.tsx -------------------------------------------------------------------------------- /src/plugins/monet-theme/src/components/hooks/useCommits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/src/components/hooks/useCommits.ts -------------------------------------------------------------------------------- /src/plugins/monet-theme/src/components/hooks/usePatches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/src/components/hooks/usePatches.ts -------------------------------------------------------------------------------- /src/plugins/monet-theme/src/components/pages/CommitsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/src/components/pages/CommitsPage.tsx -------------------------------------------------------------------------------- /src/plugins/monet-theme/src/components/pages/ConfigurePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/src/components/pages/ConfigurePage.tsx -------------------------------------------------------------------------------- /src/plugins/monet-theme/src/components/sheets/AddBackgroundSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/src/components/sheets/AddBackgroundSheet.tsx -------------------------------------------------------------------------------- /src/plugins/monet-theme/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/src/index.ts -------------------------------------------------------------------------------- /src/plugins/monet-theme/src/stuff/buildTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/src/stuff/buildTheme.ts -------------------------------------------------------------------------------- /src/plugins/monet-theme/src/stuff/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/src/stuff/colors.ts -------------------------------------------------------------------------------- /src/plugins/monet-theme/src/stuff/conventionalCommits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/src/stuff/conventionalCommits.ts -------------------------------------------------------------------------------- /src/plugins/monet-theme/src/stuff/jsoncParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/src/stuff/jsoncParser.ts -------------------------------------------------------------------------------- /src/plugins/monet-theme/src/stuff/material/cam16.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/src/stuff/material/cam16.ts -------------------------------------------------------------------------------- /src/plugins/monet-theme/src/stuff/material/hctsolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/src/stuff/material/hctsolver.ts -------------------------------------------------------------------------------- /src/plugins/monet-theme/src/stuff/material/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/src/stuff/material/index.ts -------------------------------------------------------------------------------- /src/plugins/monet-theme/src/stuff/material/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/src/stuff/material/utils.ts -------------------------------------------------------------------------------- /src/plugins/monet-theme/src/stuff/repainter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/src/stuff/repainter.ts -------------------------------------------------------------------------------- /src/plugins/monet-theme/src/stuff/wallpapers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/src/stuff/wallpapers.ts -------------------------------------------------------------------------------- /src/plugins/monet-theme/src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/src/types.d.ts -------------------------------------------------------------------------------- /src/plugins/monet-theme/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/monet-theme/status.json -------------------------------------------------------------------------------- /src/plugins/nexxutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/README.md -------------------------------------------------------------------------------- /src/plugins/nexxutils/assets/ColorfulChannels/announcement/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/assets/ColorfulChannels/announcement/lock.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/assets/ColorfulChannels/announcement/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/assets/ColorfulChannels/announcement/warning.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/assets/ColorfulChannels/controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/assets/ColorfulChannels/controller.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/assets/ColorfulChannels/forum/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/assets/ColorfulChannels/forum/lock.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/assets/ColorfulChannels/forum/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/assets/ColorfulChannels/forum/warning.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/assets/ColorfulChannels/image/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/assets/ColorfulChannels/image/lock.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/assets/ColorfulChannels/image/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/assets/ColorfulChannels/image/warning.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/assets/ColorfulChannels/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/assets/ColorfulChannels/lock.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/assets/ColorfulChannels/lockBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/assets/ColorfulChannels/lockBottom.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/assets/ColorfulChannels/stage/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/assets/ColorfulChannels/stage/lock.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/assets/ColorfulChannels/text/controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/assets/ColorfulChannels/text/controller.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/assets/ColorfulChannels/text/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/assets/ColorfulChannels/text/lock.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/assets/ColorfulChannels/text/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/assets/ColorfulChannels/text/warning.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/assets/ColorfulChannels/tpconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "root": "ColorfulChannels" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/nexxutils/assets/ColorfulChannels/voice/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/assets/ColorfulChannels/voice/lock.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/assets/ColorfulChannels/voice/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/assets/ColorfulChannels/voice/warning.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/assets/ColorfulChannels/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/assets/ColorfulChannels/warning.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/assets/ColorfulChannels/warningBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/assets/ColorfulChannels/warningBottom.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/assets/MiniMod/NerdEmoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/assets/MiniMod/NerdEmoji.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/assets/MiniMod/tpconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "root": "Minimod" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/nexxutils/assets/SpotifyListenAlong/UserPlayIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/assets/SpotifyListenAlong/UserPlayIcon.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/assets/SpotifyListenAlong/tpconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "root": "SpotifyListenAlong" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/nexxutils/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/manifest.json -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/components/Header.tsx -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/components/ModuleInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/components/ModuleInfo.tsx -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/components/ModuleOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/components/ModuleOption.tsx -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/components/Settings.tsx -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/components/SillyAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/components/SillyAvatar.tsx -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/components/modals/ErrorViewerModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/components/modals/ErrorViewerModal.tsx -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/components/pages/ModulePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/components/pages/ModulePage.tsx -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/index.ts -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/BetterComponents/components/M3Dialog/TextButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/BetterComponents/components/M3Dialog/TextButton.tsx -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/BetterComponents/components/M3Dialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/BetterComponents/components/M3Dialog/index.tsx -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/BetterComponents/components/M3Snackbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/BetterComponents/components/M3Snackbar.tsx -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/BetterComponents/components/M3Switch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/BetterComponents/components/M3Switch/index.tsx -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/BetterComponents/components/M3Switch/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/BetterComponents/components/M3Switch/styles.ts -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/BetterComponents/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/BetterComponents/index.ts -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/ColorfulChannels/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/ColorfulChannels/dark.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/ColorfulChannels/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/ColorfulChannels/index.ts -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/ColorfulChannels/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/ColorfulChannels/light.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/Minimod/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/Minimod/dark.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/Minimod/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/Minimod/index.ts -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/Minimod/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/Minimod/light.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/SendSpotifyInvite/components/InviteButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/SendSpotifyInvite/components/InviteButton.tsx -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/SendSpotifyInvite/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/SendSpotifyInvite/dark.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/SendSpotifyInvite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/SendSpotifyInvite/index.ts -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/SendSpotifyInvite/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/SendSpotifyInvite/light.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/SpotifyListenAlong/components/ClassicListenButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/SpotifyListenAlong/components/ClassicListenButton.tsx -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/SpotifyListenAlong/components/SimplifiedListenButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/SpotifyListenAlong/components/SimplifiedListenButton.tsx -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/SpotifyListenAlong/components/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/SpotifyListenAlong/components/core.ts -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/SpotifyListenAlong/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/SpotifyListenAlong/dark.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/SpotifyListenAlong/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/SpotifyListenAlong/index.ts -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/SpotifyListenAlong/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/SpotifyListenAlong/light.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/TenorGifFix/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/TenorGifFix/dark.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/TenorGifFix/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/TenorGifFix/index.ts -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/TenorGifFix/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/TenorGifFix/light.png -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/modules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/modules/index.ts -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/stuff/Module.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/stuff/Module.tsx -------------------------------------------------------------------------------- /src/plugins/nexxutils/src/stuff/devtools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/nexxutils/src/stuff/devtools.ts -------------------------------------------------------------------------------- /src/plugins/nexxutils/status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "finished" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/plugin-browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-browser/README.md -------------------------------------------------------------------------------- /src/plugins/plugin-browser/assets/SortDateNewestIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-browser/assets/SortDateNewestIcon.png -------------------------------------------------------------------------------- /src/plugins/plugin-browser/assets/SortDateOldestIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-browser/assets/SortDateOldestIcon.png -------------------------------------------------------------------------------- /src/plugins/plugin-browser/assets/SortNameAZIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-browser/assets/SortNameAZIcon.png -------------------------------------------------------------------------------- /src/plugins/plugin-browser/assets/SortNameZAIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-browser/assets/SortNameZAIcon.png -------------------------------------------------------------------------------- /src/plugins/plugin-browser/assets/tpconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "root": "PluginBrowser" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/plugin-browser/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-browser/manifest.json -------------------------------------------------------------------------------- /src/plugins/plugin-browser/src/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-browser/src/components/Card.tsx -------------------------------------------------------------------------------- /src/plugins/plugin-browser/src/components/PluginCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-browser/src/components/PluginCard.tsx -------------------------------------------------------------------------------- /src/plugins/plugin-browser/src/components/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-browser/src/components/Search.tsx -------------------------------------------------------------------------------- /src/plugins/plugin-browser/src/components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-browser/src/components/Settings.tsx -------------------------------------------------------------------------------- /src/plugins/plugin-browser/src/components/hooks/usePlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-browser/src/components/hooks/usePlugin.ts -------------------------------------------------------------------------------- /src/plugins/plugin-browser/src/components/pages/PluginBrowserPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-browser/src/components/pages/PluginBrowserPage.tsx -------------------------------------------------------------------------------- /src/plugins/plugin-browser/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-browser/src/index.ts -------------------------------------------------------------------------------- /src/plugins/plugin-browser/src/stuff/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-browser/src/stuff/constants.ts -------------------------------------------------------------------------------- /src/plugins/plugin-browser/src/stuff/patcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-browser/src/stuff/patcher.tsx -------------------------------------------------------------------------------- /src/plugins/plugin-browser/src/stuff/pluginChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-browser/src/stuff/pluginChecker.ts -------------------------------------------------------------------------------- /src/plugins/plugin-browser/src/stuff/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-browser/src/stuff/util.ts -------------------------------------------------------------------------------- /src/plugins/plugin-browser/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-browser/src/types.ts -------------------------------------------------------------------------------- /src/plugins/plugin-browser/status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "finished" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/plugin-embeds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-embeds/README.md -------------------------------------------------------------------------------- /src/plugins/plugin-embeds/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-embeds/manifest.json -------------------------------------------------------------------------------- /src/plugins/plugin-embeds/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-embeds/src/index.ts -------------------------------------------------------------------------------- /src/plugins/plugin-embeds/src/stuff/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-embeds/src/stuff/messages.ts -------------------------------------------------------------------------------- /src/plugins/plugin-embeds/src/stuff/patcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-embeds/src/stuff/patcher.ts -------------------------------------------------------------------------------- /src/plugins/plugin-embeds/src/stuff/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-embeds/src/stuff/plugins.ts -------------------------------------------------------------------------------- /src/plugins/plugin-embeds/src/stuff/whitelist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/plugin-embeds/src/stuff/whitelist.ts -------------------------------------------------------------------------------- /src/plugins/plugin-embeds/status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "finished" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/rejuvenate.dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/rejuvenate.dev/README.md -------------------------------------------------------------------------------- /src/plugins/rejuvenate.dev/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/rejuvenate.dev/manifest.json -------------------------------------------------------------------------------- /src/plugins/rejuvenate.dev/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/rejuvenate.dev/src/index.ts -------------------------------------------------------------------------------- /src/plugins/rejuvenate.dev/src/stuff/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/rejuvenate.dev/src/stuff/constants.ts -------------------------------------------------------------------------------- /src/plugins/rejuvenate.dev/src/stuff/ws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/rejuvenate.dev/src/stuff/ws.ts -------------------------------------------------------------------------------- /src/plugins/rejuvenate.dev/status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "finished" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/song-spotlight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/README.md -------------------------------------------------------------------------------- /src/plugins/song-spotlight/assets/card/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/assets/card/next.svg -------------------------------------------------------------------------------- /src/plugins/song-spotlight/assets/card/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/assets/card/pause.svg -------------------------------------------------------------------------------- /src/plugins/song-spotlight/assets/card/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/assets/card/play.svg -------------------------------------------------------------------------------- /src/plugins/song-spotlight/assets/card/spotifyAudioWebView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/assets/card/spotifyAudioWebView.html -------------------------------------------------------------------------------- /src/plugins/song-spotlight/assets/images/player/FastForwardIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/assets/images/player/FastForwardIcon.png -------------------------------------------------------------------------------- /src/plugins/song-spotlight/assets/images/player/FastForwardShuffleIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/assets/images/player/FastForwardShuffleIcon.png -------------------------------------------------------------------------------- /src/plugins/song-spotlight/assets/images/player/PlayShuffleIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/assets/images/player/PlayShuffleIcon.png -------------------------------------------------------------------------------- /src/plugins/song-spotlight/assets/images/services/AppleMusicIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/assets/images/services/AppleMusicIcon.png -------------------------------------------------------------------------------- /src/plugins/song-spotlight/assets/images/services/SoundcloudIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/assets/images/services/SoundcloudIcon.png -------------------------------------------------------------------------------- /src/plugins/song-spotlight/assets/images/tpconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "root": "SongSpotlight" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/song-spotlight/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/manifest.json -------------------------------------------------------------------------------- /src/plugins/song-spotlight/src/components/AudioPlayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/src/components/AudioPlayer.tsx -------------------------------------------------------------------------------- /src/plugins/song-spotlight/src/components/ProfileSongs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/src/components/ProfileSongs.tsx -------------------------------------------------------------------------------- /src/plugins/song-spotlight/src/components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/src/components/Settings.tsx -------------------------------------------------------------------------------- /src/plugins/song-spotlight/src/components/songs/AddSong.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/src/components/songs/AddSong.tsx -------------------------------------------------------------------------------- /src/plugins/song-spotlight/src/components/songs/EntrySong.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/src/components/songs/EntrySong.tsx -------------------------------------------------------------------------------- /src/plugins/song-spotlight/src/components/songs/ProfileSong.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/src/components/songs/ProfileSong.tsx -------------------------------------------------------------------------------- /src/plugins/song-spotlight/src/components/songs/SongInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/src/components/songs/SongInfo.tsx -------------------------------------------------------------------------------- /src/plugins/song-spotlight/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/src/constants.ts -------------------------------------------------------------------------------- /src/plugins/song-spotlight/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/src/index.ts -------------------------------------------------------------------------------- /src/plugins/song-spotlight/src/stores/AuthorizationStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/src/stores/AuthorizationStore.ts -------------------------------------------------------------------------------- /src/plugins/song-spotlight/src/stores/CacheStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/src/stores/CacheStore.ts -------------------------------------------------------------------------------- /src/plugins/song-spotlight/src/stuff/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/src/stuff/api.ts -------------------------------------------------------------------------------- /src/plugins/song-spotlight/src/stuff/oauth2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/src/stuff/oauth2.ts -------------------------------------------------------------------------------- /src/plugins/song-spotlight/src/stuff/patcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/src/stuff/patcher.ts -------------------------------------------------------------------------------- /src/plugins/song-spotlight/src/stuff/songs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/src/stuff/songs/index.ts -------------------------------------------------------------------------------- /src/plugins/song-spotlight/src/stuff/songs/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/src/stuff/songs/info.ts -------------------------------------------------------------------------------- /src/plugins/song-spotlight/src/stuff/songs/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/src/stuff/songs/parse.ts -------------------------------------------------------------------------------- /src/plugins/song-spotlight/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/src/types.ts -------------------------------------------------------------------------------- /src/plugins/song-spotlight/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/song-spotlight/status.json -------------------------------------------------------------------------------- /src/plugins/tenor-gif-fix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/tenor-gif-fix/README.md -------------------------------------------------------------------------------- /src/plugins/tenor-gif-fix/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/tenor-gif-fix/manifest.json -------------------------------------------------------------------------------- /src/plugins/tenor-gif-fix/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/tenor-gif-fix/src/index.ts -------------------------------------------------------------------------------- /src/plugins/tenor-gif-fix/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/tenor-gif-fix/status.json -------------------------------------------------------------------------------- /src/plugins/themes-plus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/README.md -------------------------------------------------------------------------------- /src/plugins/themes-plus/assets/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/assets/check.png -------------------------------------------------------------------------------- /src/plugins/themes-plus/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/manifest.json -------------------------------------------------------------------------------- /src/plugins/themes-plus/src/components/IconpackRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/src/components/IconpackRow.tsx -------------------------------------------------------------------------------- /src/plugins/themes-plus/src/components/ProgressCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/src/components/ProgressCircle.tsx -------------------------------------------------------------------------------- /src/plugins/themes-plus/src/components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/src/components/Settings.tsx -------------------------------------------------------------------------------- /src/plugins/themes-plus/src/components/modals/ConfigModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/src/components/modals/ConfigModal.tsx -------------------------------------------------------------------------------- /src/plugins/themes-plus/src/components/modals/tabs/IconpackTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/src/components/modals/tabs/IconpackTab.tsx -------------------------------------------------------------------------------- /src/plugins/themes-plus/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/src/index.tsx -------------------------------------------------------------------------------- /src/plugins/themes-plus/src/patches/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/src/patches/icons.tsx -------------------------------------------------------------------------------- /src/plugins/themes-plus/src/patches/mentionLineColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/src/patches/mentionLineColor.ts -------------------------------------------------------------------------------- /src/plugins/themes-plus/src/stores/CacheStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/src/stores/CacheStore.ts -------------------------------------------------------------------------------- /src/plugins/themes-plus/src/stuff/active.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/src/stuff/active.ts -------------------------------------------------------------------------------- /src/plugins/themes-plus/src/stuff/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/src/stuff/constants.ts -------------------------------------------------------------------------------- /src/plugins/themes-plus/src/stuff/iconOverlays.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/src/stuff/iconOverlays.tsx -------------------------------------------------------------------------------- /src/plugins/themes-plus/src/stuff/iconpackDataGetter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/src/stuff/iconpackDataGetter.ts -------------------------------------------------------------------------------- /src/plugins/themes-plus/src/stuff/loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/src/stuff/loader.tsx -------------------------------------------------------------------------------- /src/plugins/themes-plus/src/stuff/modIcons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/src/stuff/modIcons.ts -------------------------------------------------------------------------------- /src/plugins/themes-plus/src/stuff/packInstaller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/src/stuff/packInstaller.ts -------------------------------------------------------------------------------- /src/plugins/themes-plus/src/stuff/resolveColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/src/stuff/resolveColor.ts -------------------------------------------------------------------------------- /src/plugins/themes-plus/src/stuff/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/src/stuff/util.ts -------------------------------------------------------------------------------- /src/plugins/themes-plus/src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/src/types.d.ts -------------------------------------------------------------------------------- /src/plugins/themes-plus/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/themes-plus/status.json -------------------------------------------------------------------------------- /src/plugins/twemoji-everywhere/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/twemoji-everywhere/README.md -------------------------------------------------------------------------------- /src/plugins/twemoji-everywhere/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/twemoji-everywhere/manifest.json -------------------------------------------------------------------------------- /src/plugins/twemoji-everywhere/src/components/CustomTwemoji.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/twemoji-everywhere/src/components/CustomTwemoji.tsx -------------------------------------------------------------------------------- /src/plugins/twemoji-everywhere/src/components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/twemoji-everywhere/src/components/Settings.tsx -------------------------------------------------------------------------------- /src/plugins/twemoji-everywhere/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/twemoji-everywhere/src/index.ts -------------------------------------------------------------------------------- /src/plugins/twemoji-everywhere/src/stuff/packs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/twemoji-everywhere/src/stuff/packs.ts -------------------------------------------------------------------------------- /src/plugins/twemoji-everywhere/src/stuff/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/twemoji-everywhere/src/stuff/parser.ts -------------------------------------------------------------------------------- /src/plugins/twemoji-everywhere/src/stuff/patcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/twemoji-everywhere/src/stuff/patcher.ts -------------------------------------------------------------------------------- /src/plugins/twemoji-everywhere/status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "finished" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/use-system-emoji/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/use-system-emoji/README.md -------------------------------------------------------------------------------- /src/plugins/use-system-emoji/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/use-system-emoji/manifest.json -------------------------------------------------------------------------------- /src/plugins/use-system-emoji/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/use-system-emoji/src/index.ts -------------------------------------------------------------------------------- /src/plugins/use-system-emoji/status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "finished" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/userpfp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/userpfp/README.md -------------------------------------------------------------------------------- /src/plugins/userpfp/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/userpfp/manifest.json -------------------------------------------------------------------------------- /src/plugins/userpfp/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/userpfp/src/index.ts -------------------------------------------------------------------------------- /src/plugins/userpfp/src/stuff/patcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/userpfp/src/stuff/patcher.ts -------------------------------------------------------------------------------- /src/plugins/userpfp/src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/plugins/userpfp/src/types.d.ts -------------------------------------------------------------------------------- /src/plugins/userpfp/status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "finished" 3 | } 4 | -------------------------------------------------------------------------------- /src/stuff/components/ActionSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/components/ActionSheet.tsx -------------------------------------------------------------------------------- /src/stuff/components/AutoRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/components/AutoRow.tsx -------------------------------------------------------------------------------- /src/stuff/components/BetterTableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/components/BetterTableRow.tsx -------------------------------------------------------------------------------- /src/stuff/components/InlineCheckbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/components/InlineCheckbox.tsx -------------------------------------------------------------------------------- /src/stuff/components/InputAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/components/InputAlert.tsx -------------------------------------------------------------------------------- /src/stuff/components/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/components/Modal.tsx -------------------------------------------------------------------------------- /src/stuff/components/RichText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/components/RichText.tsx -------------------------------------------------------------------------------- /src/stuff/components/ScaleRowButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/components/ScaleRowButton.tsx -------------------------------------------------------------------------------- /src/stuff/components/Skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/components/Skeleton.tsx -------------------------------------------------------------------------------- /src/stuff/components/SliderIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/components/SliderIcon.tsx -------------------------------------------------------------------------------- /src/stuff/components/SmartMention.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/components/SmartMention.tsx -------------------------------------------------------------------------------- /src/stuff/components/SuperAwesomeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/components/SuperAwesomeIcon.tsx -------------------------------------------------------------------------------- /src/stuff/components/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/components/Text.tsx -------------------------------------------------------------------------------- /src/stuff/components/TextBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/components/TextBadge.tsx -------------------------------------------------------------------------------- /src/stuff/components/sheets/ChooseSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/components/sheets/ChooseSheet.tsx -------------------------------------------------------------------------------- /src/stuff/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/constants.ts -------------------------------------------------------------------------------- /src/stuff/crowdin.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/crowdin.mjs -------------------------------------------------------------------------------- /src/stuff/deps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/deps.ts -------------------------------------------------------------------------------- /src/stuff/hooks/usePromise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/hooks/usePromise.ts -------------------------------------------------------------------------------- /src/stuff/lang/LangStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/lang/LangStore.ts -------------------------------------------------------------------------------- /src/stuff/lang/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/lang/index.tsx -------------------------------------------------------------------------------- /src/stuff/lib/intlProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/lib/intlProxy.ts -------------------------------------------------------------------------------- /src/stuff/lib/pinToSettings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/lib/pinToSettings/index.ts -------------------------------------------------------------------------------- /src/stuff/lib/pinToSettings/panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/lib/pinToSettings/panel.tsx -------------------------------------------------------------------------------- /src/stuff/lib/pinToSettings/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/lib/pinToSettings/tabs.tsx -------------------------------------------------------------------------------- /src/stuff/lib/redesign/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/lib/redesign/index.tsx -------------------------------------------------------------------------------- /src/stuff/lib/redesign/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/lib/redesign/types.ts -------------------------------------------------------------------------------- /src/stuff/lib/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/lib/ui.ts -------------------------------------------------------------------------------- /src/stuff/migration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/migration.tsx -------------------------------------------------------------------------------- /src/stuff/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/types.tsx -------------------------------------------------------------------------------- /src/stuff/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/src/stuff/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexpid/RevengePlugins/HEAD/tsconfig.json --------------------------------------------------------------------------------