├── .eslintignore ├── .eslintrc.json ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── changelogs.json ├── i18n ├── bg.json ├── cs.json ├── da.json ├── de.json ├── el.json ├── en-GB.json ├── en-US.json ├── es-ES.json ├── fi.json ├── fr.json ├── hr.json ├── hu.json ├── id-ID.json ├── index.js ├── it.json ├── ja.json ├── ko.json ├── lt.json ├── nl.json ├── no.json ├── overrides │ ├── en-GB.json │ └── index.js ├── pl.json ├── pt-BR.json ├── pt-PT.json ├── ro.json ├── ru.json ├── sk.json ├── sv-SE.json ├── th.json ├── tr.json ├── uk.json ├── vi.json ├── zh-CN.json └── zh-TW.json ├── injectors ├── darwin.js ├── elevate.js ├── env_check.js ├── index.js ├── linux.js ├── log.js ├── main.js └── win32.js ├── jsconfig.json ├── package.json ├── polyfills ├── index.js └── util.js ├── release.sh ├── src ├── Powercord │ ├── apis │ │ ├── commands.js │ │ ├── connections.js │ │ ├── i18n.js │ │ ├── keybinds.js │ │ ├── labs.js │ │ ├── notices.js │ │ ├── router.js │ │ ├── rpc.js │ │ ├── settings.js │ │ └── settingsStore │ │ │ ├── actions.js │ │ │ ├── constants.js │ │ │ └── store.js │ ├── coremods │ │ ├── __reload.js │ │ ├── badges │ │ │ ├── Badges.jsx │ │ │ ├── DonateModal │ │ │ │ ├── Header.jsx │ │ │ │ └── index.jsx │ │ │ ├── index.js │ │ │ └── style.css │ │ ├── dev-lands │ │ │ └── index.js │ │ ├── index.js │ │ ├── no-track │ │ │ └── index.js │ │ ├── react-devtools │ │ │ └── index.js │ │ ├── registry.js │ │ ├── router │ │ │ └── index.js │ │ ├── store │ │ │ ├── components │ │ │ │ ├── CardsContainer.jsx │ │ │ │ ├── Form │ │ │ │ │ ├── Closed.jsx │ │ │ │ │ ├── Form.jsx │ │ │ │ │ ├── Intro.jsx │ │ │ │ │ ├── Success.jsx │ │ │ │ │ └── index.jsx │ │ │ │ ├── Hosting │ │ │ │ │ ├── Form.jsx │ │ │ │ │ └── Intro.jsx │ │ │ │ ├── Publish │ │ │ │ │ ├── Form.jsx │ │ │ │ │ └── Intro.jsx │ │ │ │ ├── Sidebar.jsx │ │ │ │ ├── Store.jsx │ │ │ │ ├── StoreListing.jsx │ │ │ │ ├── StoreWrapper.jsx │ │ │ │ ├── Suggestions.jsx │ │ │ │ └── Verification │ │ │ │ │ ├── Form.jsx │ │ │ │ │ └── Intro.jsx │ │ │ ├── index.js │ │ │ └── style │ │ │ │ └── style.scss │ │ ├── util.js │ │ └── utility-classes │ │ │ ├── index.js │ │ │ └── modules │ │ │ ├── avatars.js │ │ │ ├── folders.js │ │ │ ├── generic.js │ │ │ ├── guildHeader.js │ │ │ ├── guilds.js │ │ │ ├── messages.js │ │ │ └── tabBar.js │ ├── index.js │ ├── managers │ │ ├── apis.js │ │ ├── plugins.js │ │ ├── style.css │ │ └── styles.js │ ├── modules │ │ ├── flux.js │ │ ├── index.js │ │ ├── jsx.js │ │ ├── libraries │ │ │ ├── index.js │ │ │ └── libraries.json │ │ └── localStorage.js │ ├── plugins │ │ ├── pc-clickableEdits │ │ │ ├── Settings.jsx │ │ │ ├── index.js │ │ │ └── manifest.json │ │ ├── pc-codeblocks │ │ │ ├── index.js │ │ │ ├── manifest.json │ │ │ └── style.css │ │ ├── pc-commands │ │ │ ├── commands │ │ │ │ ├── echo.js │ │ │ │ ├── help.js │ │ │ │ ├── index.js │ │ │ │ └── say.js │ │ │ ├── components │ │ │ │ ├── Command.jsx │ │ │ │ └── Title.jsx │ │ │ ├── index.js │ │ │ ├── injectAutocomplete.js │ │ │ ├── manifest.json │ │ │ └── monkeypatchMessages.js │ │ ├── pc-connections │ │ │ ├── components │ │ │ │ ├── ConnectAccountButton.jsx │ │ │ │ ├── Verified.jsx │ │ │ │ ├── profile │ │ │ │ │ ├── ConnectedAccount.jsx │ │ │ │ │ └── ConnectedAccounts.jsx │ │ │ │ └── settings │ │ │ │ │ ├── ConnectedAccount.jsx │ │ │ │ │ └── ConnectedAccounts.jsx │ │ │ ├── index.js │ │ │ ├── manifest.json │ │ │ └── style.css │ │ ├── pc-docs │ │ │ ├── components │ │ │ │ ├── DocPage.jsx │ │ │ │ ├── DocsLayer.jsx │ │ │ │ └── SettingsView.jsx │ │ │ ├── index.js │ │ │ ├── manifest.json │ │ │ └── scss │ │ │ │ └── style.scss │ │ ├── pc-emojiUtility │ │ │ ├── components │ │ │ │ ├── EmojiNameModal.jsx │ │ │ │ └── Settings.jsx │ │ │ ├── index.js │ │ │ ├── manifest.json │ │ │ └── style.scss │ │ ├── pc-hastebin │ │ │ ├── Settings.jsx │ │ │ ├── index.js │ │ │ └── manifest.json │ │ ├── pc-heygirl │ │ │ ├── index.js │ │ │ └── manifest.json │ │ ├── pc-i18n │ │ │ ├── index.js │ │ │ └── manifest.json │ │ ├── pc-lmgtfy │ │ │ ├── Settings.jsx │ │ │ ├── index.js │ │ │ └── manifest.json │ │ ├── pc-mock │ │ │ ├── index.js │ │ │ └── manifest.json │ │ ├── pc-moduleManager │ │ │ ├── .gitignore │ │ │ ├── commands │ │ │ │ ├── disable.js │ │ │ │ ├── enable.js │ │ │ │ ├── index.js │ │ │ │ ├── plugins.js │ │ │ │ └── themes.js │ │ │ ├── components │ │ │ │ ├── License.jsx │ │ │ │ ├── SnippetButton.jsx │ │ │ │ ├── brrrrr │ │ │ │ │ └── items │ │ │ │ │ │ └── Products │ │ │ │ │ │ ├── Card.jsx │ │ │ │ │ │ ├── Installed.jsx │ │ │ │ │ │ ├── Product.jsx │ │ │ │ │ │ └── parts │ │ │ │ │ │ ├── InstalledDetails.jsx │ │ │ │ │ │ ├── InstalledFooter.jsx │ │ │ │ │ │ ├── InstalledHeader.jsx │ │ │ │ │ │ ├── Permissions.jsx │ │ │ │ │ │ └── Product │ │ │ │ │ │ ├── Footer.jsx │ │ │ │ │ │ ├── Header.jsx │ │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ │ ├── Rating.jsx │ │ │ │ │ │ └── Tags.jsx │ │ │ │ ├── installer │ │ │ │ │ └── Button.jsx │ │ │ │ ├── manage │ │ │ │ │ ├── Base.jsx │ │ │ │ │ ├── CodeMirror.jsx │ │ │ │ │ ├── Plugins.jsx │ │ │ │ │ ├── QuickCSS.jsx │ │ │ │ │ ├── ThemeField.jsx │ │ │ │ │ ├── ThemeSettings.jsx │ │ │ │ │ └── Themes.jsx │ │ │ │ ├── parts │ │ │ │ │ ├── BaseProduct.jsx │ │ │ │ │ ├── Details.jsx │ │ │ │ │ ├── InstalledProduct.jsx │ │ │ │ │ └── Permissions.jsx │ │ │ │ └── store │ │ │ │ │ └── Store.jsx │ │ │ ├── deeplinks.js │ │ │ ├── index.js │ │ │ ├── licenses.json │ │ │ ├── licenses │ │ │ │ ├── bg.json │ │ │ │ ├── cs.json │ │ │ │ ├── da.json │ │ │ │ ├── de.json │ │ │ │ ├── el.json │ │ │ │ ├── en-GB.json │ │ │ │ ├── en-US.json │ │ │ │ ├── es-ES.json │ │ │ │ ├── fi.json │ │ │ │ ├── fr.json │ │ │ │ ├── hr.json │ │ │ │ ├── hu.json │ │ │ │ ├── index.js │ │ │ │ ├── it.json │ │ │ │ ├── ja.json │ │ │ │ ├── ko.json │ │ │ │ ├── lt.json │ │ │ │ ├── nl.json │ │ │ │ ├── no.json │ │ │ │ ├── pl.json │ │ │ │ ├── pt-BR.json │ │ │ │ ├── pt-PT.json │ │ │ │ ├── ro.json │ │ │ │ ├── ru.json │ │ │ │ ├── sk.json │ │ │ │ ├── sv-SE.json │ │ │ │ ├── th.json │ │ │ │ ├── tr.json │ │ │ │ ├── uk.json │ │ │ │ ├── vi.json │ │ │ │ ├── zh-CN.json │ │ │ │ └── zh-TW.json │ │ │ ├── manifest.json │ │ │ ├── scss │ │ │ │ ├── brrrrr │ │ │ │ │ ├── license.scss │ │ │ │ │ ├── manage │ │ │ │ │ │ ├── header.scss │ │ │ │ │ │ ├── modal.scss │ │ │ │ │ │ └── plugins.scss │ │ │ │ │ ├── product.scss │ │ │ │ │ ├── store.scss │ │ │ │ │ └── style.scss │ │ │ │ ├── manage.scss │ │ │ │ ├── product.scss │ │ │ │ ├── quickcss.scss │ │ │ │ └── style.scss │ │ │ └── util │ │ │ │ ├── cloneRepo.js │ │ │ │ └── resp.js │ │ ├── pc-notices │ │ │ ├── components │ │ │ │ ├── Announcement.jsx │ │ │ │ ├── AnnouncementContainer.jsx │ │ │ │ ├── Toast.jsx │ │ │ │ └── ToastContainer.jsx │ │ │ ├── index.js │ │ │ ├── manifest.json │ │ │ └── style.scss │ │ ├── pc-rpc │ │ │ ├── index.js │ │ │ └── manifest.json │ │ ├── pc-sdk │ │ │ ├── components │ │ │ │ ├── ForceUI.jsx │ │ │ │ ├── SdkWindow.jsx │ │ │ │ ├── Settings.jsx │ │ │ │ ├── SplashScreen.jsx │ │ │ │ └── TitleBar.js │ │ │ ├── index.js │ │ │ ├── manifest.json │ │ │ └── scss │ │ │ │ └── style.scss │ │ ├── pc-settings │ │ │ ├── components │ │ │ │ ├── ErrorBoundary.jsx │ │ │ │ ├── GeneralSettings │ │ │ │ │ ├── Account.jsx │ │ │ │ │ ├── LinkedAccounts.jsx │ │ │ │ │ ├── PassphraseModal.jsx │ │ │ │ │ ├── PowercordAccount.jsx │ │ │ │ │ └── index.jsx │ │ │ │ └── Labs.jsx │ │ │ ├── index.js │ │ │ ├── manifest.json │ │ │ └── scss │ │ │ │ ├── _keybinds.scss │ │ │ │ └── style.scss │ │ ├── pc-spotify │ │ │ ├── SpotifyAPI.js │ │ │ ├── commands │ │ │ │ ├── album.js │ │ │ │ ├── find.js │ │ │ │ ├── index.js │ │ │ │ ├── like.js │ │ │ │ ├── next.js │ │ │ │ ├── pause.js │ │ │ │ ├── play.js │ │ │ │ ├── previous.js │ │ │ │ ├── resume.js │ │ │ │ ├── share.js │ │ │ │ └── volume.js │ │ │ ├── components │ │ │ │ ├── AddToPlaylist.jsx │ │ │ │ ├── ContextMenu.jsx │ │ │ │ ├── Modal.jsx │ │ │ │ ├── PayUp.jsx │ │ │ │ ├── SeekBar.jsx │ │ │ │ ├── Settings.jsx │ │ │ │ └── ShareModal.jsx │ │ │ ├── constants.js │ │ │ ├── i18n │ │ │ │ ├── en-US.json │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── manifest.json │ │ │ ├── playerStore │ │ │ │ ├── actions.js │ │ │ │ └── store.js │ │ │ ├── songsStore │ │ │ │ ├── actions.js │ │ │ │ └── store.js │ │ │ └── style.scss │ │ ├── pc-tags │ │ │ ├── commands │ │ │ │ ├── add.js │ │ │ │ ├── delete.js │ │ │ │ ├── index.js │ │ │ │ ├── list.js │ │ │ │ ├── update.js │ │ │ │ └── view.js │ │ │ ├── index.js │ │ │ └── manifest.json │ │ └── pc-updater │ │ │ ├── components │ │ │ ├── Icons.jsx │ │ │ ├── Settings.jsx │ │ │ └── Update.jsx │ │ │ ├── index.js │ │ │ ├── manifest.json │ │ │ └── style.scss │ └── themes │ │ └── .exists ├── browserWindow.js ├── fake_node_modules │ ├── keybindutils │ │ ├── acceleratorToEvent.js │ │ ├── isAccelerator.js │ │ ├── isEqual.js │ │ └── localShortcut.js │ └── powercord │ │ ├── compilers │ │ ├── compiler.js │ │ ├── css.js │ │ ├── index.js │ │ ├── jsx.js │ │ ├── less.js │ │ ├── scss.js │ │ └── stylus.js │ │ ├── components │ │ ├── AsyncComponent.js │ │ ├── ColorPicker.jsx │ │ ├── ContextMenu.jsx │ │ ├── Divider.jsx │ │ ├── ErrorState.jsx │ │ ├── Icon.js │ │ ├── Icons │ │ │ ├── Arch.jsx │ │ │ ├── Bin.jsx │ │ │ ├── Bulb.jsx │ │ │ ├── Chemistry.jsx │ │ │ ├── Clear.jsx │ │ │ ├── Close.jsx │ │ │ ├── CloudDownload.jsx │ │ │ ├── CloudUpload.jsx │ │ │ ├── CodeBraces.jsx │ │ │ ├── Copy.jsx │ │ │ ├── Discord.jsx │ │ │ ├── ExternalLink.jsx │ │ │ ├── FontAwesome.jsx │ │ │ ├── Gear.jsx │ │ │ ├── GitHub.jsx │ │ │ ├── ImportExport.jsx │ │ │ ├── Info.jsx │ │ │ ├── Key.jsx │ │ │ ├── Keyboard.jsx │ │ │ ├── Overflow.jsx │ │ │ ├── Person.jsx │ │ │ ├── PersonShield.jsx │ │ │ ├── Pin.jsx │ │ │ ├── Plugin.jsx │ │ │ ├── PowercordCutie.jsx │ │ │ ├── Receipt.jsx │ │ │ ├── ReportFlag.jsx │ │ │ ├── Scale.jsx │ │ │ ├── SdkWordmark.jsx │ │ │ ├── Search.jsx │ │ │ ├── Server.jsx │ │ │ ├── Spotify.jsx │ │ │ ├── Sync.jsx │ │ │ ├── Tag.jsx │ │ │ ├── Theme.jsx │ │ │ ├── ThumbsDown.jsx │ │ │ ├── ThumbsUp.jsx │ │ │ ├── Unlink.jsx │ │ │ ├── Unpin.jsx │ │ │ ├── Verified.jsx │ │ │ ├── VerifiedBadge.jsx │ │ │ ├── badges │ │ │ │ ├── Contributor.jsx │ │ │ │ ├── Developer.jsx │ │ │ │ ├── Early.jsx │ │ │ │ ├── Hunter.jsx │ │ │ │ ├── Staff.jsx │ │ │ │ ├── Support.jsx │ │ │ │ ├── Translator.jsx │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── PopoutWindow.jsx │ │ ├── ReactHelmet.js │ │ ├── Switch.jsx │ │ ├── _deprecated │ │ │ └── todo.txt │ │ ├── index.js │ │ ├── modal.js │ │ └── settings │ │ │ ├── ButtonItem.jsx │ │ │ ├── Category.jsx │ │ │ ├── CheckboxInput.jsx │ │ │ ├── ColorPickerInput.jsx │ │ │ ├── FormItem.jsx │ │ │ ├── KeybindRecorder.jsx │ │ │ ├── RadioGroup.jsx │ │ │ ├── SelectInput.jsx │ │ │ ├── SliderInput.jsx │ │ │ ├── TextAreaInput.jsx │ │ │ ├── TextInput.jsx │ │ │ └── index.js │ │ ├── constants.js │ │ ├── entities │ │ ├── API.js │ │ ├── Plugin.js │ │ ├── Theme.js │ │ ├── Updatable.js │ │ └── index.js │ │ ├── http │ │ ├── GenericRequest.js │ │ ├── dst_root_ca_x3.pem │ │ └── index.js │ │ ├── index.js │ │ ├── injector │ │ └── index.js │ │ ├── modal.js │ │ ├── util │ │ ├── camelCaseify.js │ │ ├── createElement.js │ │ ├── findInReactTree.js │ │ ├── findInTree.js │ │ ├── forceUpdateElement.js │ │ ├── formatTime.js │ │ ├── getOwnerInstance.js │ │ ├── getReactInstance.js │ │ ├── gotoOrJoinServer.js │ │ ├── index.js │ │ ├── injectContextMenu.js │ │ ├── rmdirRf.js │ │ ├── sleep.js │ │ ├── waitFor.js │ │ └── wrapInHooks.js │ │ └── webpack │ │ ├── index.js │ │ ├── modules.json │ │ ├── old.webpack.js │ │ ├── proxy.js │ │ └── serialize.js ├── ipc │ ├── main.js │ └── renderer.js ├── patcher.js ├── preload.js ├── preloadSplash.js └── updater.win32.js └── test ├── jsx.test.js ├── scss.test.js ├── stylus.test.js └── test-data ├── jsx └── Test.jsx ├── scss ├── basic │ └── style.scss └── imports │ ├── style.scss │ └── uwu.scss └── stylus ├── basic └── style.styl ├── imports ├── style.styl └── uwu.styl ├── imports_globbing ├── folder │ ├── a.styl │ └── b.styl └── style.styl ├── imports_index ├── style.styl └── uwu │ └── index.styl ├── imports_index_notrailing ├── style.styl └── uwu │ └── index.styl ├── imports_nested ├── style.styl └── subfolder1 │ ├── subfolder2 │ └── owo.styl │ └── uwu.styl └── imports_noext ├── style.styl └── uwu.styl /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: aetheryx 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/README.md -------------------------------------------------------------------------------- /changelogs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/changelogs.json -------------------------------------------------------------------------------- /i18n/bg.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /i18n/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/i18n/cs.json -------------------------------------------------------------------------------- /i18n/da.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/i18n/de.json -------------------------------------------------------------------------------- /i18n/el.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /i18n/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/i18n/en-GB.json -------------------------------------------------------------------------------- /i18n/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/i18n/en-US.json -------------------------------------------------------------------------------- /i18n/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/i18n/es-ES.json -------------------------------------------------------------------------------- /i18n/fi.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/i18n/fr.json -------------------------------------------------------------------------------- /i18n/hr.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /i18n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/i18n/hu.json -------------------------------------------------------------------------------- /i18n/id-ID.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/i18n/id-ID.json -------------------------------------------------------------------------------- /i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/i18n/index.js -------------------------------------------------------------------------------- /i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/i18n/it.json -------------------------------------------------------------------------------- /i18n/ja.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /i18n/ko.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /i18n/lt.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /i18n/nl.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /i18n/no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/i18n/no.json -------------------------------------------------------------------------------- /i18n/overrides/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/i18n/overrides/en-GB.json -------------------------------------------------------------------------------- /i18n/overrides/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/i18n/overrides/index.js -------------------------------------------------------------------------------- /i18n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/i18n/pl.json -------------------------------------------------------------------------------- /i18n/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/i18n/pt-BR.json -------------------------------------------------------------------------------- /i18n/pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/i18n/pt-PT.json -------------------------------------------------------------------------------- /i18n/ro.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/i18n/ru.json -------------------------------------------------------------------------------- /i18n/sk.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /i18n/sv-SE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/i18n/sv-SE.json -------------------------------------------------------------------------------- /i18n/th.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/i18n/tr.json -------------------------------------------------------------------------------- /i18n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/i18n/uk.json -------------------------------------------------------------------------------- /i18n/vi.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /i18n/zh-CN.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /i18n/zh-TW.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /injectors/darwin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/injectors/darwin.js -------------------------------------------------------------------------------- /injectors/elevate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/injectors/elevate.js -------------------------------------------------------------------------------- /injectors/env_check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/injectors/env_check.js -------------------------------------------------------------------------------- /injectors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/injectors/index.js -------------------------------------------------------------------------------- /injectors/linux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/injectors/linux.js -------------------------------------------------------------------------------- /injectors/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/injectors/log.js -------------------------------------------------------------------------------- /injectors/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/injectors/main.js -------------------------------------------------------------------------------- /injectors/win32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/injectors/win32.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/package.json -------------------------------------------------------------------------------- /polyfills/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/polyfills/index.js -------------------------------------------------------------------------------- /polyfills/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/polyfills/util.js -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/release.sh -------------------------------------------------------------------------------- /src/Powercord/apis/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/apis/commands.js -------------------------------------------------------------------------------- /src/Powercord/apis/connections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/apis/connections.js -------------------------------------------------------------------------------- /src/Powercord/apis/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/apis/i18n.js -------------------------------------------------------------------------------- /src/Powercord/apis/keybinds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/apis/keybinds.js -------------------------------------------------------------------------------- /src/Powercord/apis/labs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/apis/labs.js -------------------------------------------------------------------------------- /src/Powercord/apis/notices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/apis/notices.js -------------------------------------------------------------------------------- /src/Powercord/apis/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/apis/router.js -------------------------------------------------------------------------------- /src/Powercord/apis/rpc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/apis/rpc.js -------------------------------------------------------------------------------- /src/Powercord/apis/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/apis/settings.js -------------------------------------------------------------------------------- /src/Powercord/apis/settingsStore/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/apis/settingsStore/actions.js -------------------------------------------------------------------------------- /src/Powercord/apis/settingsStore/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/apis/settingsStore/constants.js -------------------------------------------------------------------------------- /src/Powercord/apis/settingsStore/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/apis/settingsStore/store.js -------------------------------------------------------------------------------- /src/Powercord/coremods/__reload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/__reload.js -------------------------------------------------------------------------------- /src/Powercord/coremods/badges/Badges.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/badges/Badges.jsx -------------------------------------------------------------------------------- /src/Powercord/coremods/badges/DonateModal/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/badges/DonateModal/Header.jsx -------------------------------------------------------------------------------- /src/Powercord/coremods/badges/DonateModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/badges/DonateModal/index.jsx -------------------------------------------------------------------------------- /src/Powercord/coremods/badges/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/badges/index.js -------------------------------------------------------------------------------- /src/Powercord/coremods/badges/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/badges/style.css -------------------------------------------------------------------------------- /src/Powercord/coremods/dev-lands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/dev-lands/index.js -------------------------------------------------------------------------------- /src/Powercord/coremods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/index.js -------------------------------------------------------------------------------- /src/Powercord/coremods/no-track/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/no-track/index.js -------------------------------------------------------------------------------- /src/Powercord/coremods/react-devtools/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/react-devtools/index.js -------------------------------------------------------------------------------- /src/Powercord/coremods/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/registry.js -------------------------------------------------------------------------------- /src/Powercord/coremods/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/router/index.js -------------------------------------------------------------------------------- /src/Powercord/coremods/store/components/CardsContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/store/components/CardsContainer.jsx -------------------------------------------------------------------------------- /src/Powercord/coremods/store/components/Form/Closed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/store/components/Form/Closed.jsx -------------------------------------------------------------------------------- /src/Powercord/coremods/store/components/Form/Form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/store/components/Form/Form.jsx -------------------------------------------------------------------------------- /src/Powercord/coremods/store/components/Form/Intro.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/store/components/Form/Intro.jsx -------------------------------------------------------------------------------- /src/Powercord/coremods/store/components/Form/Success.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/store/components/Form/Success.jsx -------------------------------------------------------------------------------- /src/Powercord/coremods/store/components/Form/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/store/components/Form/index.jsx -------------------------------------------------------------------------------- /src/Powercord/coremods/store/components/Hosting/Form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/store/components/Hosting/Form.jsx -------------------------------------------------------------------------------- /src/Powercord/coremods/store/components/Hosting/Intro.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/store/components/Hosting/Intro.jsx -------------------------------------------------------------------------------- /src/Powercord/coremods/store/components/Publish/Form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/store/components/Publish/Form.jsx -------------------------------------------------------------------------------- /src/Powercord/coremods/store/components/Publish/Intro.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/store/components/Publish/Intro.jsx -------------------------------------------------------------------------------- /src/Powercord/coremods/store/components/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/store/components/Sidebar.jsx -------------------------------------------------------------------------------- /src/Powercord/coremods/store/components/Store.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/store/components/Store.jsx -------------------------------------------------------------------------------- /src/Powercord/coremods/store/components/StoreListing.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/store/components/StoreListing.jsx -------------------------------------------------------------------------------- /src/Powercord/coremods/store/components/StoreWrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/store/components/StoreWrapper.jsx -------------------------------------------------------------------------------- /src/Powercord/coremods/store/components/Suggestions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/store/components/Suggestions.jsx -------------------------------------------------------------------------------- /src/Powercord/coremods/store/components/Verification/Form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/store/components/Verification/Form.jsx -------------------------------------------------------------------------------- /src/Powercord/coremods/store/components/Verification/Intro.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/store/components/Verification/Intro.jsx -------------------------------------------------------------------------------- /src/Powercord/coremods/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/store/index.js -------------------------------------------------------------------------------- /src/Powercord/coremods/store/style/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/store/style/style.scss -------------------------------------------------------------------------------- /src/Powercord/coremods/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/util.js -------------------------------------------------------------------------------- /src/Powercord/coremods/utility-classes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/utility-classes/index.js -------------------------------------------------------------------------------- /src/Powercord/coremods/utility-classes/modules/avatars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/utility-classes/modules/avatars.js -------------------------------------------------------------------------------- /src/Powercord/coremods/utility-classes/modules/folders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/utility-classes/modules/folders.js -------------------------------------------------------------------------------- /src/Powercord/coremods/utility-classes/modules/generic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/utility-classes/modules/generic.js -------------------------------------------------------------------------------- /src/Powercord/coremods/utility-classes/modules/guildHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/utility-classes/modules/guildHeader.js -------------------------------------------------------------------------------- /src/Powercord/coremods/utility-classes/modules/guilds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/utility-classes/modules/guilds.js -------------------------------------------------------------------------------- /src/Powercord/coremods/utility-classes/modules/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/utility-classes/modules/messages.js -------------------------------------------------------------------------------- /src/Powercord/coremods/utility-classes/modules/tabBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/coremods/utility-classes/modules/tabBar.js -------------------------------------------------------------------------------- /src/Powercord/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/index.js -------------------------------------------------------------------------------- /src/Powercord/managers/apis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/managers/apis.js -------------------------------------------------------------------------------- /src/Powercord/managers/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/managers/plugins.js -------------------------------------------------------------------------------- /src/Powercord/managers/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/managers/style.css -------------------------------------------------------------------------------- /src/Powercord/managers/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/managers/styles.js -------------------------------------------------------------------------------- /src/Powercord/modules/flux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/modules/flux.js -------------------------------------------------------------------------------- /src/Powercord/modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/modules/index.js -------------------------------------------------------------------------------- /src/Powercord/modules/jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/modules/jsx.js -------------------------------------------------------------------------------- /src/Powercord/modules/libraries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/modules/libraries/index.js -------------------------------------------------------------------------------- /src/Powercord/modules/libraries/libraries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/modules/libraries/libraries.json -------------------------------------------------------------------------------- /src/Powercord/modules/localStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/modules/localStorage.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-clickableEdits/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-clickableEdits/Settings.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-clickableEdits/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-clickableEdits/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-clickableEdits/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-clickableEdits/manifest.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-codeblocks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-codeblocks/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-codeblocks/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-codeblocks/manifest.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-codeblocks/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-codeblocks/style.css -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-commands/commands/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-commands/commands/echo.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-commands/commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-commands/commands/help.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-commands/commands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-commands/commands/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-commands/commands/say.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-commands/commands/say.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-commands/components/Command.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-commands/components/Command.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-commands/components/Title.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-commands/components/Title.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-commands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-commands/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-commands/injectAutocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-commands/injectAutocomplete.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-commands/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-commands/manifest.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-commands/monkeypatchMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-commands/monkeypatchMessages.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-connections/components/ConnectAccountButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-connections/components/ConnectAccountButton.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-connections/components/Verified.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-connections/components/Verified.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-connections/components/profile/ConnectedAccount.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-connections/components/profile/ConnectedAccount.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-connections/components/profile/ConnectedAccounts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-connections/components/profile/ConnectedAccounts.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-connections/components/settings/ConnectedAccount.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-connections/components/settings/ConnectedAccount.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-connections/components/settings/ConnectedAccounts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-connections/components/settings/ConnectedAccounts.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-connections/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-connections/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-connections/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-connections/manifest.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-connections/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-connections/style.css -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-docs/components/DocPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-docs/components/DocPage.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-docs/components/DocsLayer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-docs/components/DocsLayer.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-docs/components/SettingsView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-docs/components/SettingsView.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-docs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-docs/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-docs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-docs/manifest.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-docs/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-docs/scss/style.scss -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-emojiUtility/components/EmojiNameModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-emojiUtility/components/EmojiNameModal.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-emojiUtility/components/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-emojiUtility/components/Settings.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-emojiUtility/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-emojiUtility/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-emojiUtility/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-emojiUtility/manifest.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-emojiUtility/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-emojiUtility/style.scss -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-hastebin/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-hastebin/Settings.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-hastebin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-hastebin/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-hastebin/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-hastebin/manifest.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-heygirl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-heygirl/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-heygirl/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-heygirl/manifest.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-i18n/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-i18n/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-i18n/manifest.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-lmgtfy/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-lmgtfy/Settings.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-lmgtfy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-lmgtfy/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-lmgtfy/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-lmgtfy/manifest.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-mock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-mock/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-mock/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-mock/manifest.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/.gitignore: -------------------------------------------------------------------------------- 1 | /quickcss.css 2 | -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/commands/disable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/commands/disable.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/commands/enable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/commands/enable.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/commands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/commands/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/commands/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/commands/plugins.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/commands/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/commands/themes.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/License.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/License.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/SnippetButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/SnippetButton.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/Card.jsx: -------------------------------------------------------------------------------- 1 | // eyes 2 | -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/Installed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/Installed.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/Product.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/Product.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/parts/InstalledDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/parts/InstalledDetails.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/parts/InstalledFooter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/parts/InstalledFooter.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/parts/InstalledHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/parts/InstalledHeader.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/parts/Permissions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/parts/Permissions.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/parts/Product/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/parts/Product/Footer.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/parts/Product/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/parts/Product/Header.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/parts/Product/Preview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/parts/Product/Preview.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/parts/Product/Rating.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/parts/Product/Rating.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/parts/Product/Tags.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/brrrrr/items/Products/parts/Product/Tags.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/installer/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/installer/Button.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/manage/Base.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/manage/Base.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/manage/CodeMirror.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/manage/CodeMirror.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/manage/Plugins.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/manage/Plugins.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/manage/QuickCSS.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/manage/QuickCSS.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/manage/ThemeField.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/manage/ThemeField.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/manage/ThemeSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/manage/ThemeSettings.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/manage/Themes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/manage/Themes.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/parts/BaseProduct.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/parts/BaseProduct.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/parts/Details.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/parts/Details.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/parts/InstalledProduct.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/parts/InstalledProduct.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/parts/Permissions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/parts/Permissions.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/components/store/Store.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/components/store/Store.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/deeplinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/deeplinks.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/licenses.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/bg.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/licenses/cs.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/da.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/licenses/de.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/el.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/licenses/en-GB.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/licenses/en-US.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/licenses/es-ES.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/fi.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/licenses/fr.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/hr.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/hu.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/licenses/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/licenses/it.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/ja.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/ko.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/lt.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/nl.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/licenses/no.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/licenses/pl.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/licenses/pt-BR.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/pt-PT.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/ro.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/licenses/ru.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/sk.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/sv-SE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/licenses/sv-SE.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/th.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/licenses/tr.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/licenses/uk.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/vi.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/zh-CN.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/licenses/zh-TW.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/manifest.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/scss/brrrrr/license.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/scss/brrrrr/license.scss -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/scss/brrrrr/manage/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/scss/brrrrr/manage/header.scss -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/scss/brrrrr/manage/modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/scss/brrrrr/manage/modal.scss -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/scss/brrrrr/manage/plugins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/scss/brrrrr/manage/plugins.scss -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/scss/brrrrr/product.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/scss/brrrrr/product.scss -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/scss/brrrrr/store.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/scss/brrrrr/store.scss -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/scss/brrrrr/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/scss/brrrrr/style.scss -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/scss/manage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/scss/manage.scss -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/scss/product.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/scss/product.scss -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/scss/quickcss.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/scss/quickcss.scss -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/scss/style.scss -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/util/cloneRepo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/util/cloneRepo.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-moduleManager/util/resp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-moduleManager/util/resp.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-notices/components/Announcement.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-notices/components/Announcement.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-notices/components/AnnouncementContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-notices/components/AnnouncementContainer.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-notices/components/Toast.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-notices/components/Toast.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-notices/components/ToastContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-notices/components/ToastContainer.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-notices/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-notices/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-notices/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-notices/manifest.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-notices/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-notices/style.scss -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-rpc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-rpc/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-rpc/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-rpc/manifest.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-sdk/components/ForceUI.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-sdk/components/ForceUI.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-sdk/components/SdkWindow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-sdk/components/SdkWindow.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-sdk/components/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-sdk/components/Settings.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-sdk/components/SplashScreen.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-sdk/components/SplashScreen.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-sdk/components/TitleBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-sdk/components/TitleBar.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-sdk/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-sdk/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-sdk/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-sdk/manifest.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-sdk/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-sdk/scss/style.scss -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-settings/components/ErrorBoundary.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-settings/components/ErrorBoundary.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-settings/components/GeneralSettings/Account.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-settings/components/GeneralSettings/Account.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-settings/components/GeneralSettings/LinkedAccounts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-settings/components/GeneralSettings/LinkedAccounts.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-settings/components/GeneralSettings/PassphraseModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-settings/components/GeneralSettings/PassphraseModal.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-settings/components/GeneralSettings/PowercordAccount.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-settings/components/GeneralSettings/PowercordAccount.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-settings/components/GeneralSettings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-settings/components/GeneralSettings/index.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-settings/components/Labs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-settings/components/Labs.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-settings/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-settings/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-settings/manifest.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-settings/scss/_keybinds.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-settings/scss/_keybinds.scss -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-settings/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-settings/scss/style.scss -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/SpotifyAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/SpotifyAPI.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/commands/album.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/commands/album.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/commands/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/commands/find.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/commands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/commands/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/commands/like.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/commands/like.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/commands/next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/commands/next.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/commands/pause.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/commands/pause.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/commands/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/commands/play.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/commands/previous.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/commands/previous.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/commands/resume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/commands/resume.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/commands/share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/commands/share.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/commands/volume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/commands/volume.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/components/AddToPlaylist.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/components/AddToPlaylist.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/components/ContextMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/components/ContextMenu.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/components/Modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/components/Modal.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/components/PayUp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/components/PayUp.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/components/SeekBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/components/SeekBar.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/components/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/components/Settings.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/components/ShareModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/components/ShareModal.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/constants.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/i18n/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/i18n/en-US.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/i18n/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/manifest.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/playerStore/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/playerStore/actions.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/playerStore/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/playerStore/store.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/songsStore/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/songsStore/actions.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/songsStore/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/songsStore/store.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-spotify/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-spotify/style.scss -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-tags/commands/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-tags/commands/add.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-tags/commands/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-tags/commands/delete.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-tags/commands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-tags/commands/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-tags/commands/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-tags/commands/list.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-tags/commands/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-tags/commands/update.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-tags/commands/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-tags/commands/view.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-tags/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-tags/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-tags/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-tags/manifest.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-updater/components/Icons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-updater/components/Icons.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-updater/components/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-updater/components/Settings.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-updater/components/Update.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-updater/components/Update.jsx -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-updater/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-updater/index.js -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-updater/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-updater/manifest.json -------------------------------------------------------------------------------- /src/Powercord/plugins/pc-updater/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/Powercord/plugins/pc-updater/style.scss -------------------------------------------------------------------------------- /src/Powercord/themes/.exists: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/browserWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/browserWindow.js -------------------------------------------------------------------------------- /src/fake_node_modules/keybindutils/acceleratorToEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/keybindutils/acceleratorToEvent.js -------------------------------------------------------------------------------- /src/fake_node_modules/keybindutils/isAccelerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/keybindutils/isAccelerator.js -------------------------------------------------------------------------------- /src/fake_node_modules/keybindutils/isEqual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/keybindutils/isEqual.js -------------------------------------------------------------------------------- /src/fake_node_modules/keybindutils/localShortcut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/keybindutils/localShortcut.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/compilers/compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/compilers/compiler.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/compilers/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/compilers/css.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/compilers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/compilers/index.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/compilers/jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/compilers/jsx.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/compilers/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/compilers/less.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/compilers/scss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/compilers/scss.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/compilers/stylus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/compilers/stylus.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/AsyncComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/AsyncComponent.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/ColorPicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/ColorPicker.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/ContextMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/ContextMenu.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Divider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Divider.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/ErrorState.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/ErrorState.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icon.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Arch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Arch.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Bin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Bin.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Bulb.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Bulb.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Chemistry.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Chemistry.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Clear.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Clear.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Close.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Close.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/CloudDownload.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/CloudDownload.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/CloudUpload.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/CloudUpload.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/CodeBraces.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/CodeBraces.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Copy.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Copy.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Discord.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Discord.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/ExternalLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/ExternalLink.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/FontAwesome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/FontAwesome.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Gear.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Gear.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/GitHub.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/GitHub.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/ImportExport.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/ImportExport.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Info.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Info.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Key.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Key.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Keyboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Keyboard.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Overflow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Overflow.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Person.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Person.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/PersonShield.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/PersonShield.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Pin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Pin.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Plugin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Plugin.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/PowercordCutie.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/PowercordCutie.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Receipt.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Receipt.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/ReportFlag.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/ReportFlag.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Scale.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Scale.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/SdkWordmark.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/SdkWordmark.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Search.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Server.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Server.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Spotify.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Spotify.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Sync.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Sync.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Tag.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Tag.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Theme.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Theme.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/ThumbsDown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/ThumbsDown.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/ThumbsUp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/ThumbsUp.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Unlink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Unlink.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Unpin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Unpin.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/Verified.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/Verified.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/VerifiedBadge.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/VerifiedBadge.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/badges/Contributor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/badges/Contributor.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/badges/Developer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/badges/Developer.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/badges/Early.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/badges/Early.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/badges/Hunter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/badges/Hunter.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/badges/Staff.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/badges/Staff.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/badges/Support.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/badges/Support.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/badges/Translator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/badges/Translator.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/badges/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/badges/index.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Icons/index.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/PopoutWindow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/PopoutWindow.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/ReactHelmet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/ReactHelmet.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/Switch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/Switch.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/_deprecated/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/_deprecated/todo.txt -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/index.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/modal.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/settings/ButtonItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/settings/ButtonItem.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/settings/Category.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/settings/Category.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/settings/CheckboxInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/settings/CheckboxInput.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/settings/ColorPickerInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/settings/ColorPickerInput.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/settings/FormItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/settings/FormItem.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/settings/KeybindRecorder.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/settings/KeybindRecorder.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/settings/RadioGroup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/settings/RadioGroup.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/settings/SelectInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/settings/SelectInput.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/settings/SliderInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/settings/SliderInput.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/settings/TextAreaInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/settings/TextAreaInput.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/settings/TextInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/settings/TextInput.jsx -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/components/settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/components/settings/index.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/constants.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/entities/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/entities/API.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/entities/Plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/entities/Plugin.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/entities/Theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/entities/Theme.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/entities/Updatable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/entities/Updatable.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/entities/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/entities/index.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/http/GenericRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/http/GenericRequest.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/http/dst_root_ca_x3.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/http/dst_root_ca_x3.pem -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/http/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/http/index.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/index.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/injector/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/injector/index.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/modal.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/util/camelCaseify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/util/camelCaseify.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/util/createElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/util/createElement.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/util/findInReactTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/util/findInReactTree.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/util/findInTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/util/findInTree.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/util/forceUpdateElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/util/forceUpdateElement.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/util/formatTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/util/formatTime.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/util/getOwnerInstance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/util/getOwnerInstance.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/util/getReactInstance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/util/getReactInstance.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/util/gotoOrJoinServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/util/gotoOrJoinServer.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/util/index.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/util/injectContextMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/util/injectContextMenu.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/util/rmdirRf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/util/rmdirRf.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/util/sleep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/util/sleep.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/util/waitFor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/util/waitFor.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/util/wrapInHooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/util/wrapInHooks.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/webpack/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/webpack/index.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/webpack/modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/webpack/modules.json -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/webpack/old.webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/webpack/old.webpack.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/webpack/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/webpack/proxy.js -------------------------------------------------------------------------------- /src/fake_node_modules/powercord/webpack/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/fake_node_modules/powercord/webpack/serialize.js -------------------------------------------------------------------------------- /src/ipc/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/ipc/main.js -------------------------------------------------------------------------------- /src/ipc/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/ipc/renderer.js -------------------------------------------------------------------------------- /src/patcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/patcher.js -------------------------------------------------------------------------------- /src/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/preload.js -------------------------------------------------------------------------------- /src/preloadSplash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/preloadSplash.js -------------------------------------------------------------------------------- /src/updater.win32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/src/updater.win32.js -------------------------------------------------------------------------------- /test/jsx.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/test/jsx.test.js -------------------------------------------------------------------------------- /test/scss.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/test/scss.test.js -------------------------------------------------------------------------------- /test/stylus.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/test/stylus.test.js -------------------------------------------------------------------------------- /test/test-data/jsx/Test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercord-org/powercord/HEAD/test/test-data/jsx/Test.jsx -------------------------------------------------------------------------------- /test/test-data/scss/basic/style.scss: -------------------------------------------------------------------------------- 1 | .test { color: red; } 2 | -------------------------------------------------------------------------------- /test/test-data/scss/imports/style.scss: -------------------------------------------------------------------------------- 1 | @use 'uwu.scss'; 2 | -------------------------------------------------------------------------------- /test/test-data/scss/imports/uwu.scss: -------------------------------------------------------------------------------- 1 | .test { color: red; } 2 | -------------------------------------------------------------------------------- /test/test-data/stylus/basic/style.styl: -------------------------------------------------------------------------------- 1 | .test 2 | color: red 3 | -------------------------------------------------------------------------------- /test/test-data/stylus/imports/style.styl: -------------------------------------------------------------------------------- 1 | @import 'uwu.styl' 2 | -------------------------------------------------------------------------------- /test/test-data/stylus/imports/uwu.styl: -------------------------------------------------------------------------------- 1 | .test 2 | color: red 3 | -------------------------------------------------------------------------------- /test/test-data/stylus/imports_globbing/folder/a.styl: -------------------------------------------------------------------------------- 1 | .test 2 | color: red 3 | -------------------------------------------------------------------------------- /test/test-data/stylus/imports_globbing/folder/b.styl: -------------------------------------------------------------------------------- 1 | .test 2 | color: blue 3 | -------------------------------------------------------------------------------- /test/test-data/stylus/imports_globbing/style.styl: -------------------------------------------------------------------------------- 1 | @import 'folder/*' 2 | -------------------------------------------------------------------------------- /test/test-data/stylus/imports_index/style.styl: -------------------------------------------------------------------------------- 1 | @import 'uwu/'; 2 | -------------------------------------------------------------------------------- /test/test-data/stylus/imports_index/uwu/index.styl: -------------------------------------------------------------------------------- 1 | .test 2 | color: red 3 | -------------------------------------------------------------------------------- /test/test-data/stylus/imports_index_notrailing/style.styl: -------------------------------------------------------------------------------- 1 | @import 'uwu'; 2 | -------------------------------------------------------------------------------- /test/test-data/stylus/imports_index_notrailing/uwu/index.styl: -------------------------------------------------------------------------------- 1 | .test 2 | color: red 3 | -------------------------------------------------------------------------------- /test/test-data/stylus/imports_nested/style.styl: -------------------------------------------------------------------------------- 1 | @import 'subfolder1/uwu'; 2 | -------------------------------------------------------------------------------- /test/test-data/stylus/imports_nested/subfolder1/subfolder2/owo.styl: -------------------------------------------------------------------------------- 1 | .test 2 | color: red 3 | -------------------------------------------------------------------------------- /test/test-data/stylus/imports_nested/subfolder1/uwu.styl: -------------------------------------------------------------------------------- 1 | @import 'subfolder2/owo'; 2 | 3 | .test 4 | color: blue 5 | -------------------------------------------------------------------------------- /test/test-data/stylus/imports_noext/style.styl: -------------------------------------------------------------------------------- 1 | @import 'uwu'; 2 | -------------------------------------------------------------------------------- /test/test-data/stylus/imports_noext/uwu.styl: -------------------------------------------------------------------------------- 1 | .test 2 | color: red 3 | --------------------------------------------------------------------------------