├── .envrc ├── .gitignore ├── .vscode └── settings.json ├── .zed └── settings.json ├── README.md ├── assets ├── plugin modal.png └── plugins page.png ├── biome.json ├── bun.lock ├── bun.nix ├── flake.lock ├── flake.nix ├── lib ├── api │ ├── context │ │ ├── event.ts │ │ ├── index.ts │ │ ├── patch.ts │ │ ├── plugin.ts │ │ └── settings.ts │ ├── experiment.ts │ ├── gql.ts │ ├── page.tsx │ ├── platform.ts │ ├── react.ts │ ├── registry.ts │ ├── themes │ │ ├── index.ts │ │ └── styles.ts │ └── topbar.tsx ├── components │ ├── codeBlock │ │ ├── CodeBlock.tsx │ │ ├── codeBlock.css │ │ └── index.ts │ ├── icons.ts │ ├── input │ │ ├── Select.tsx │ │ ├── TextInput.tsx │ │ ├── index.ts │ │ ├── select.css │ │ └── textInput.css │ ├── modal │ │ ├── Modal.tsx │ │ ├── ModalFooter.tsx │ │ ├── index.ts │ │ └── modal.css │ ├── settings │ │ ├── ExtendifyPage.tsx │ │ ├── debug │ │ │ ├── DebugTab.tsx │ │ │ ├── debugTab.css │ │ │ └── index.ts │ │ ├── experiments │ │ │ ├── Experiment.tsx │ │ │ ├── ExperimentsTab.tsx │ │ │ ├── experiment.css │ │ │ ├── experimentTypes │ │ │ │ ├── ExperimentNumber.tsx │ │ │ │ ├── ExperimentSelect.tsx │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── extendifyPage.css │ │ ├── index.ts │ │ ├── plugins │ │ │ ├── Plugin.tsx │ │ │ ├── PluginModal.tsx │ │ │ ├── PluginsTab.tsx │ │ │ ├── index.ts │ │ │ ├── optionTypes │ │ │ │ ├── OptionBoolean.tsx │ │ │ │ ├── OptionNumber.tsx │ │ │ │ ├── OptionSelect.tsx │ │ │ │ ├── OptionSlider.tsx │ │ │ │ ├── OptionString.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── optionType.css │ │ │ ├── plugin.css │ │ │ └── pluginModal.css │ │ └── themes │ │ │ ├── Theme.tsx │ │ │ ├── ThemeModal.tsx │ │ │ ├── ThemesTab.tsx │ │ │ ├── index.ts │ │ │ ├── theme.css │ │ │ └── themeModal.css │ └── spotify.ts ├── shared │ ├── constants.ts │ ├── lazy.ts │ ├── logger.ts │ ├── match.ts │ └── types │ │ ├── index.d.ts │ │ ├── spotify │ │ ├── ads.d.ts │ │ ├── devices.d.ts │ │ ├── experiments.d.ts │ │ ├── index.d.ts │ │ ├── playback.d.ts │ │ ├── player.d.ts │ │ ├── queue.d.ts │ │ ├── settings.d.ts │ │ └── user.d.ts │ │ └── webpack.d.ts └── webpack │ ├── exporter.ts │ ├── index.ts │ ├── interceptor.ts │ ├── loader.ts │ ├── module.tsx │ └── patcher.ts ├── nix ├── package.nix └── shell.nix ├── package.json ├── scripts ├── args.ts ├── build │ ├── config.ts │ └── index.ts ├── devtools.ts ├── patch.ts ├── postinstall.ts ├── proc │ ├── kill.ts │ └── start.ts ├── tsconfig.json ├── update.ts ├── utils.ts └── win │ └── trust.ps1 ├── src ├── examplePlugin.ts ├── globals.d.ts ├── index.ts ├── plugins │ ├── adBlock.ts │ ├── browserSorting │ │ ├── filter.ts │ │ └── index.ts │ ├── cleanLinks.ts │ ├── clickableCredits.ts │ ├── consoleShortcuts │ │ ├── index.ts │ │ └── shortcuts.d.ts │ ├── fixes │ │ ├── index.css │ │ └── index.ts │ ├── index.tsx │ ├── moreArtistCards │ │ ├── ArtistCards.tsx │ │ └── index.tsx │ ├── noMusicVideos.tsx │ └── skipExplicit.ts └── targets │ ├── browser │ ├── icon.png │ ├── manifest.json │ └── redirect.js │ └── desktop │ └── index.html └── tsconfig.json /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.zed/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/.zed/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/README.md -------------------------------------------------------------------------------- /assets/plugin modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/assets/plugin modal.png -------------------------------------------------------------------------------- /assets/plugins page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/assets/plugins page.png -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/biome.json -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/bun.lock -------------------------------------------------------------------------------- /bun.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/bun.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/flake.nix -------------------------------------------------------------------------------- /lib/api/context/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/api/context/event.ts -------------------------------------------------------------------------------- /lib/api/context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/api/context/index.ts -------------------------------------------------------------------------------- /lib/api/context/patch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/api/context/patch.ts -------------------------------------------------------------------------------- /lib/api/context/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/api/context/plugin.ts -------------------------------------------------------------------------------- /lib/api/context/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/api/context/settings.ts -------------------------------------------------------------------------------- /lib/api/experiment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/api/experiment.ts -------------------------------------------------------------------------------- /lib/api/gql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/api/gql.ts -------------------------------------------------------------------------------- /lib/api/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/api/page.tsx -------------------------------------------------------------------------------- /lib/api/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/api/platform.ts -------------------------------------------------------------------------------- /lib/api/react.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/api/react.ts -------------------------------------------------------------------------------- /lib/api/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/api/registry.ts -------------------------------------------------------------------------------- /lib/api/themes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/api/themes/index.ts -------------------------------------------------------------------------------- /lib/api/themes/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/api/themes/styles.ts -------------------------------------------------------------------------------- /lib/api/topbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/api/topbar.tsx -------------------------------------------------------------------------------- /lib/components/codeBlock/CodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/codeBlock/CodeBlock.tsx -------------------------------------------------------------------------------- /lib/components/codeBlock/codeBlock.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/codeBlock/codeBlock.css -------------------------------------------------------------------------------- /lib/components/codeBlock/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/codeBlock/index.ts -------------------------------------------------------------------------------- /lib/components/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/icons.ts -------------------------------------------------------------------------------- /lib/components/input/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/input/Select.tsx -------------------------------------------------------------------------------- /lib/components/input/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/input/TextInput.tsx -------------------------------------------------------------------------------- /lib/components/input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/input/index.ts -------------------------------------------------------------------------------- /lib/components/input/select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/input/select.css -------------------------------------------------------------------------------- /lib/components/input/textInput.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/input/textInput.css -------------------------------------------------------------------------------- /lib/components/modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/modal/Modal.tsx -------------------------------------------------------------------------------- /lib/components/modal/ModalFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/modal/ModalFooter.tsx -------------------------------------------------------------------------------- /lib/components/modal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/modal/index.ts -------------------------------------------------------------------------------- /lib/components/modal/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/modal/modal.css -------------------------------------------------------------------------------- /lib/components/settings/ExtendifyPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/ExtendifyPage.tsx -------------------------------------------------------------------------------- /lib/components/settings/debug/DebugTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/debug/DebugTab.tsx -------------------------------------------------------------------------------- /lib/components/settings/debug/debugTab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/debug/debugTab.css -------------------------------------------------------------------------------- /lib/components/settings/debug/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/debug/index.ts -------------------------------------------------------------------------------- /lib/components/settings/experiments/Experiment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/experiments/Experiment.tsx -------------------------------------------------------------------------------- /lib/components/settings/experiments/ExperimentsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/experiments/ExperimentsTab.tsx -------------------------------------------------------------------------------- /lib/components/settings/experiments/experiment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/experiments/experiment.css -------------------------------------------------------------------------------- /lib/components/settings/experiments/experimentTypes/ExperimentNumber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/experiments/experimentTypes/ExperimentNumber.tsx -------------------------------------------------------------------------------- /lib/components/settings/experiments/experimentTypes/ExperimentSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/experiments/experimentTypes/ExperimentSelect.tsx -------------------------------------------------------------------------------- /lib/components/settings/experiments/experimentTypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/experiments/experimentTypes/index.ts -------------------------------------------------------------------------------- /lib/components/settings/experiments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/experiments/index.ts -------------------------------------------------------------------------------- /lib/components/settings/extendifyPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/extendifyPage.css -------------------------------------------------------------------------------- /lib/components/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/index.ts -------------------------------------------------------------------------------- /lib/components/settings/plugins/Plugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/plugins/Plugin.tsx -------------------------------------------------------------------------------- /lib/components/settings/plugins/PluginModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/plugins/PluginModal.tsx -------------------------------------------------------------------------------- /lib/components/settings/plugins/PluginsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/plugins/PluginsTab.tsx -------------------------------------------------------------------------------- /lib/components/settings/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/plugins/index.ts -------------------------------------------------------------------------------- /lib/components/settings/plugins/optionTypes/OptionBoolean.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/plugins/optionTypes/OptionBoolean.tsx -------------------------------------------------------------------------------- /lib/components/settings/plugins/optionTypes/OptionNumber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/plugins/optionTypes/OptionNumber.tsx -------------------------------------------------------------------------------- /lib/components/settings/plugins/optionTypes/OptionSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/plugins/optionTypes/OptionSelect.tsx -------------------------------------------------------------------------------- /lib/components/settings/plugins/optionTypes/OptionSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/plugins/optionTypes/OptionSlider.tsx -------------------------------------------------------------------------------- /lib/components/settings/plugins/optionTypes/OptionString.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/plugins/optionTypes/OptionString.tsx -------------------------------------------------------------------------------- /lib/components/settings/plugins/optionTypes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/plugins/optionTypes/index.tsx -------------------------------------------------------------------------------- /lib/components/settings/plugins/optionTypes/optionType.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/plugins/optionTypes/optionType.css -------------------------------------------------------------------------------- /lib/components/settings/plugins/plugin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/plugins/plugin.css -------------------------------------------------------------------------------- /lib/components/settings/plugins/pluginModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/plugins/pluginModal.css -------------------------------------------------------------------------------- /lib/components/settings/themes/Theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/themes/Theme.tsx -------------------------------------------------------------------------------- /lib/components/settings/themes/ThemeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/themes/ThemeModal.tsx -------------------------------------------------------------------------------- /lib/components/settings/themes/ThemesTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/themes/ThemesTab.tsx -------------------------------------------------------------------------------- /lib/components/settings/themes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/themes/index.ts -------------------------------------------------------------------------------- /lib/components/settings/themes/theme.css: -------------------------------------------------------------------------------- 1 | .ext-theme-new-button { 2 | margin-top: 32px; 3 | } 4 | -------------------------------------------------------------------------------- /lib/components/settings/themes/themeModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/settings/themes/themeModal.css -------------------------------------------------------------------------------- /lib/components/spotify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/components/spotify.ts -------------------------------------------------------------------------------- /lib/shared/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/shared/constants.ts -------------------------------------------------------------------------------- /lib/shared/lazy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/shared/lazy.ts -------------------------------------------------------------------------------- /lib/shared/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/shared/logger.ts -------------------------------------------------------------------------------- /lib/shared/match.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/shared/match.ts -------------------------------------------------------------------------------- /lib/shared/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/shared/types/index.d.ts -------------------------------------------------------------------------------- /lib/shared/types/spotify/ads.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/shared/types/spotify/ads.d.ts -------------------------------------------------------------------------------- /lib/shared/types/spotify/devices.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/shared/types/spotify/devices.d.ts -------------------------------------------------------------------------------- /lib/shared/types/spotify/experiments.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/shared/types/spotify/experiments.d.ts -------------------------------------------------------------------------------- /lib/shared/types/spotify/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/shared/types/spotify/index.d.ts -------------------------------------------------------------------------------- /lib/shared/types/spotify/playback.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/shared/types/spotify/playback.d.ts -------------------------------------------------------------------------------- /lib/shared/types/spotify/player.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/shared/types/spotify/player.d.ts -------------------------------------------------------------------------------- /lib/shared/types/spotify/queue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/shared/types/spotify/queue.d.ts -------------------------------------------------------------------------------- /lib/shared/types/spotify/settings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/shared/types/spotify/settings.d.ts -------------------------------------------------------------------------------- /lib/shared/types/spotify/user.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/shared/types/spotify/user.d.ts -------------------------------------------------------------------------------- /lib/shared/types/webpack.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/shared/types/webpack.d.ts -------------------------------------------------------------------------------- /lib/webpack/exporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/webpack/exporter.ts -------------------------------------------------------------------------------- /lib/webpack/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/webpack/index.ts -------------------------------------------------------------------------------- /lib/webpack/interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/webpack/interceptor.ts -------------------------------------------------------------------------------- /lib/webpack/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/webpack/loader.ts -------------------------------------------------------------------------------- /lib/webpack/module.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/webpack/module.tsx -------------------------------------------------------------------------------- /lib/webpack/patcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/lib/webpack/patcher.ts -------------------------------------------------------------------------------- /nix/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/nix/package.nix -------------------------------------------------------------------------------- /nix/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/nix/shell.nix -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/package.json -------------------------------------------------------------------------------- /scripts/args.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/scripts/args.ts -------------------------------------------------------------------------------- /scripts/build/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/scripts/build/config.ts -------------------------------------------------------------------------------- /scripts/build/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/scripts/build/index.ts -------------------------------------------------------------------------------- /scripts/devtools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/scripts/devtools.ts -------------------------------------------------------------------------------- /scripts/patch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/scripts/patch.ts -------------------------------------------------------------------------------- /scripts/postinstall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/scripts/postinstall.ts -------------------------------------------------------------------------------- /scripts/proc/kill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/scripts/proc/kill.ts -------------------------------------------------------------------------------- /scripts/proc/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/scripts/proc/start.ts -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/scripts/tsconfig.json -------------------------------------------------------------------------------- /scripts/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/scripts/update.ts -------------------------------------------------------------------------------- /scripts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/scripts/utils.ts -------------------------------------------------------------------------------- /scripts/win/trust.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/scripts/win/trust.ps1 -------------------------------------------------------------------------------- /src/examplePlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/src/examplePlugin.ts -------------------------------------------------------------------------------- /src/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/src/globals.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/plugins/adBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/src/plugins/adBlock.ts -------------------------------------------------------------------------------- /src/plugins/browserSorting/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/src/plugins/browserSorting/filter.ts -------------------------------------------------------------------------------- /src/plugins/browserSorting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/src/plugins/browserSorting/index.ts -------------------------------------------------------------------------------- /src/plugins/cleanLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/src/plugins/cleanLinks.ts -------------------------------------------------------------------------------- /src/plugins/clickableCredits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/src/plugins/clickableCredits.ts -------------------------------------------------------------------------------- /src/plugins/consoleShortcuts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/src/plugins/consoleShortcuts/index.ts -------------------------------------------------------------------------------- /src/plugins/consoleShortcuts/shortcuts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/src/plugins/consoleShortcuts/shortcuts.d.ts -------------------------------------------------------------------------------- /src/plugins/fixes/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/src/plugins/fixes/index.css -------------------------------------------------------------------------------- /src/plugins/fixes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/src/plugins/fixes/index.ts -------------------------------------------------------------------------------- /src/plugins/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/src/plugins/index.tsx -------------------------------------------------------------------------------- /src/plugins/moreArtistCards/ArtistCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/src/plugins/moreArtistCards/ArtistCards.tsx -------------------------------------------------------------------------------- /src/plugins/moreArtistCards/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/src/plugins/moreArtistCards/index.tsx -------------------------------------------------------------------------------- /src/plugins/noMusicVideos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/src/plugins/noMusicVideos.tsx -------------------------------------------------------------------------------- /src/plugins/skipExplicit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/src/plugins/skipExplicit.ts -------------------------------------------------------------------------------- /src/targets/browser/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/src/targets/browser/icon.png -------------------------------------------------------------------------------- /src/targets/browser/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/src/targets/browser/manifest.json -------------------------------------------------------------------------------- /src/targets/browser/redirect.js: -------------------------------------------------------------------------------- 1 | location.pathname = ""; 2 | -------------------------------------------------------------------------------- /src/targets/desktop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/src/targets/desktop/index.html -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extendify-mod/extendify/HEAD/tsconfig.json --------------------------------------------------------------------------------