├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── compiled └── listenTogether.js ├── examples └── web.png ├── icon.png ├── manifest.json ├── package.json ├── scripts ├── openMultiSpotify.sh └── pushSpotify.sh ├── src ├── client.tsx ├── globals.d.ts ├── index.ts ├── liteEvent.ts ├── ltPlayer.ts ├── patcher.ts ├── public │ └── ui.css ├── pushExtension.ts ├── settings.ts ├── spotifyUtils.ts └── ui │ ├── ListenTogetherIcon.ts │ ├── bottomInfo.tsx │ ├── popup.tsx │ └── ui.tsx ├── tsconfig.json └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | compiled/* linguist-vendored -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/README.md -------------------------------------------------------------------------------- /compiled/listenTogether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/compiled/listenTogether.js -------------------------------------------------------------------------------- /examples/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/examples/web.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/icon.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/package.json -------------------------------------------------------------------------------- /scripts/openMultiSpotify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/scripts/openMultiSpotify.sh -------------------------------------------------------------------------------- /scripts/pushSpotify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/scripts/pushSpotify.sh -------------------------------------------------------------------------------- /src/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/src/client.tsx -------------------------------------------------------------------------------- /src/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/src/globals.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/liteEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/src/liteEvent.ts -------------------------------------------------------------------------------- /src/ltPlayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/src/ltPlayer.ts -------------------------------------------------------------------------------- /src/patcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/src/patcher.ts -------------------------------------------------------------------------------- /src/public/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/src/public/ui.css -------------------------------------------------------------------------------- /src/pushExtension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/src/pushExtension.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/spotifyUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/src/spotifyUtils.ts -------------------------------------------------------------------------------- /src/ui/ListenTogetherIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/src/ui/ListenTogetherIcon.ts -------------------------------------------------------------------------------- /src/ui/bottomInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/src/ui/bottomInfo.tsx -------------------------------------------------------------------------------- /src/ui/popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/src/ui/popup.tsx -------------------------------------------------------------------------------- /src/ui/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/src/ui/ui.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together/HEAD/yarn.lock --------------------------------------------------------------------------------