├── .gitignore ├── LICENSE ├── README.md ├── bin └── extension.crx └── source ├── gui ├── options │ ├── genius.png │ ├── options.html │ └── options.js └── popup │ ├── changelog.js │ ├── images │ ├── bt_delay.png │ ├── bt_delay_bwd.png │ ├── bt_delay_fwd.png │ ├── bt_scroll.png │ ├── bt_search.png │ └── window.png │ ├── logic.js │ ├── popup.html │ ├── style.css │ └── ui.js ├── images ├── github.png ├── icon128.png ├── icon16.png └── icon48.png ├── lyrics_providers ├── _priority.json ├── dark_lyrics.js ├── example.js ├── genius.js ├── metrolyrics.js └── vagalume.js ├── manifest.json ├── services ├── api_keys.js ├── background.js ├── dependencies │ └── jquery.min.js ├── dom_listener.js ├── launcher.js ├── lyrics_provider_chooser.js ├── main.js └── utils.js └── site_modules ├── _modules.json ├── accuradio.js ├── claromusica.js ├── deezer.js ├── google.music.js ├── lastfm.js ├── microsoft.music.js ├── pandora.js ├── slacker.js ├── soundcloud.js ├── spotify.open.js ├── spotify.play.js ├── streamsquid.js ├── superplayer.js ├── tidal.js └── youtube.js /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.DS_Store 3 | .idea/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/README.md -------------------------------------------------------------------------------- /bin/extension.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/bin/extension.crx -------------------------------------------------------------------------------- /source/gui/options/genius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/gui/options/genius.png -------------------------------------------------------------------------------- /source/gui/options/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/gui/options/options.html -------------------------------------------------------------------------------- /source/gui/options/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/gui/options/options.js -------------------------------------------------------------------------------- /source/gui/popup/changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/gui/popup/changelog.js -------------------------------------------------------------------------------- /source/gui/popup/images/bt_delay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/gui/popup/images/bt_delay.png -------------------------------------------------------------------------------- /source/gui/popup/images/bt_delay_bwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/gui/popup/images/bt_delay_bwd.png -------------------------------------------------------------------------------- /source/gui/popup/images/bt_delay_fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/gui/popup/images/bt_delay_fwd.png -------------------------------------------------------------------------------- /source/gui/popup/images/bt_scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/gui/popup/images/bt_scroll.png -------------------------------------------------------------------------------- /source/gui/popup/images/bt_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/gui/popup/images/bt_search.png -------------------------------------------------------------------------------- /source/gui/popup/images/window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/gui/popup/images/window.png -------------------------------------------------------------------------------- /source/gui/popup/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/gui/popup/logic.js -------------------------------------------------------------------------------- /source/gui/popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/gui/popup/popup.html -------------------------------------------------------------------------------- /source/gui/popup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/gui/popup/style.css -------------------------------------------------------------------------------- /source/gui/popup/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/gui/popup/ui.js -------------------------------------------------------------------------------- /source/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/images/github.png -------------------------------------------------------------------------------- /source/images/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/images/icon128.png -------------------------------------------------------------------------------- /source/images/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/images/icon16.png -------------------------------------------------------------------------------- /source/images/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/images/icon48.png -------------------------------------------------------------------------------- /source/lyrics_providers/_priority.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/lyrics_providers/_priority.json -------------------------------------------------------------------------------- /source/lyrics_providers/dark_lyrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/lyrics_providers/dark_lyrics.js -------------------------------------------------------------------------------- /source/lyrics_providers/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/lyrics_providers/example.js -------------------------------------------------------------------------------- /source/lyrics_providers/genius.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/lyrics_providers/genius.js -------------------------------------------------------------------------------- /source/lyrics_providers/metrolyrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/lyrics_providers/metrolyrics.js -------------------------------------------------------------------------------- /source/lyrics_providers/vagalume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/lyrics_providers/vagalume.js -------------------------------------------------------------------------------- /source/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/manifest.json -------------------------------------------------------------------------------- /source/services/api_keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/services/api_keys.js -------------------------------------------------------------------------------- /source/services/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/services/background.js -------------------------------------------------------------------------------- /source/services/dependencies/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/services/dependencies/jquery.min.js -------------------------------------------------------------------------------- /source/services/dom_listener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/services/dom_listener.js -------------------------------------------------------------------------------- /source/services/launcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/services/launcher.js -------------------------------------------------------------------------------- /source/services/lyrics_provider_chooser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/services/lyrics_provider_chooser.js -------------------------------------------------------------------------------- /source/services/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/services/main.js -------------------------------------------------------------------------------- /source/services/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/services/utils.js -------------------------------------------------------------------------------- /source/site_modules/_modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/site_modules/_modules.json -------------------------------------------------------------------------------- /source/site_modules/accuradio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/site_modules/accuradio.js -------------------------------------------------------------------------------- /source/site_modules/claromusica.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/site_modules/claromusica.js -------------------------------------------------------------------------------- /source/site_modules/deezer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/site_modules/deezer.js -------------------------------------------------------------------------------- /source/site_modules/google.music.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/site_modules/google.music.js -------------------------------------------------------------------------------- /source/site_modules/lastfm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/site_modules/lastfm.js -------------------------------------------------------------------------------- /source/site_modules/microsoft.music.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/site_modules/microsoft.music.js -------------------------------------------------------------------------------- /source/site_modules/pandora.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/site_modules/pandora.js -------------------------------------------------------------------------------- /source/site_modules/slacker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/site_modules/slacker.js -------------------------------------------------------------------------------- /source/site_modules/soundcloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/site_modules/soundcloud.js -------------------------------------------------------------------------------- /source/site_modules/spotify.open.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/site_modules/spotify.open.js -------------------------------------------------------------------------------- /source/site_modules/spotify.play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/site_modules/spotify.play.js -------------------------------------------------------------------------------- /source/site_modules/streamsquid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/site_modules/streamsquid.js -------------------------------------------------------------------------------- /source/site_modules/superplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/site_modules/superplayer.js -------------------------------------------------------------------------------- /source/site_modules/tidal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/site_modules/tidal.js -------------------------------------------------------------------------------- /source/site_modules/youtube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichlotto/play-music-lyrics-fetcher/HEAD/source/site_modules/youtube.js --------------------------------------------------------------------------------