├── .gitignore ├── src ├── images │ ├── 128.png │ ├── 256.png │ ├── 32.png │ ├── 64.png │ └── Spotify_Logo.png ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── offscreen.html ├── option │ └── option.coffee ├── background │ ├── message.coffee │ ├── main.js │ ├── controller.js │ ├── spotify-api.js │ └── offplayer.js ├── vendor │ ├── github-badge.js │ ├── ion.sound.js │ ├── needsharebutton.min.js │ └── font-awesome.css ├── manifest.json ├── authorized.html ├── content │ ├── authorized.js │ ├── player.coffee │ └── player.less ├── utils.coffee ├── player.html └── option.html ├── readme_images ├── s1.jpg ├── s2.png └── s3.jpg ├── utils ├── env.js ├── autoReloadClients │ ├── contentScriptClient.js │ └── backgroundClient.js ├── build.js ├── test.html └── webserver.js ├── privacy.md ├── pack.sh ├── README.md ├── package.json ├── CHANGELOG.md ├── webpack.config.js └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | *.log 4 | *.zip -------------------------------------------------------------------------------- /src/images/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revir/spotify-on-browser/HEAD/src/images/128.png -------------------------------------------------------------------------------- /src/images/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revir/spotify-on-browser/HEAD/src/images/256.png -------------------------------------------------------------------------------- /src/images/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revir/spotify-on-browser/HEAD/src/images/32.png -------------------------------------------------------------------------------- /src/images/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revir/spotify-on-browser/HEAD/src/images/64.png -------------------------------------------------------------------------------- /readme_images/s1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revir/spotify-on-browser/HEAD/readme_images/s1.jpg -------------------------------------------------------------------------------- /readme_images/s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revir/spotify-on-browser/HEAD/readme_images/s2.png -------------------------------------------------------------------------------- /readme_images/s3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revir/spotify-on-browser/HEAD/readme_images/s3.jpg -------------------------------------------------------------------------------- /src/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revir/spotify-on-browser/HEAD/src/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/images/Spotify_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revir/spotify-on-browser/HEAD/src/images/Spotify_Logo.png -------------------------------------------------------------------------------- /src/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revir/spotify-on-browser/HEAD/src/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revir/spotify-on-browser/HEAD/src/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revir/spotify-on-browser/HEAD/src/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revir/spotify-on-browser/HEAD/src/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revir/spotify-on-browser/HEAD/src/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revir/spotify-on-browser/HEAD/src/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revir/spotify-on-browser/HEAD/src/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/offscreen.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |24 | 25 | .-. . .-. .--. 26 | ( ) _|_ o | | ) 27 | `-. .,-. .-. | . -|-. . .-. .--. |--: .--..-.. . ._.--. .-. .--. 28 | ( )| )( )| | | | | ( )| | | )| ( )\ \ / `--.(.-' | 29 | `-' |`-' `-' `-'-' `-' `--| `-' ' `- '--' ' `-' `' `' `--' `--'' 30 | | ; 31 | ' `-' 32 |33 |
41 | 42 | Choose music on Spotify 43 | 44 |
45 |Connecting to Spotify...
46 |67 | {{trackName}} 68 |
69 |70 | {{artistName}} 71 |
72 | 73 | 84 |62 | 63 | 64 | .-. . .-. .--. 65 | ( ) _|_ o | | ) 66 | `-. .,-. .-. | . -|-. . .-. .--. |--: .--..-.. . ._.--. .-. .--. 67 | ( )| )( )| | | | | ( )| | | )| ( )\ \ / `--.(.-' | 68 | `-' |`-' `-' `-'-' `-' `--| `-' ' `- '--' ' `-' `' `' `--' `--'' 69 | | ; 70 | ' `-' 71 |73 | 88 | 89 |
If you like it, please share it. It really helps! Thank you.
90 | 91 |149 | Follow on: 150 | 155 | Programming N' Language Community, 157 | 162 | Discord, 163 | 164 | 169 | BlueSky 170 | 171 |
172 | 173 |
175 | It's derived from
176 | Dictionariez
179 | , which is a universal dictionary app that helps you learn multiple
180 | languages in the world.
181 |
182 | And it's open-source, stars and issues would be appreciated:
183 | .
192 |