├── .codeclimate.yml ├── .gitignore ├── .travis.yml ├── Icon.png ├── LICENSE ├── MMM-NowPlayingOnSpotify.js ├── README.md ├── authorization ├── app.js └── public │ ├── assets │ ├── client_logic.js │ └── styles.css │ ├── img │ └── Icon.png │ └── index.html ├── core ├── NPOS_DomBuilder.js └── SpotifyConnector.js ├── css └── styles.css ├── img ├── Icon.psd ├── Spotify_Icon_RGB_White.png ├── Spotify_Logo_RGB_White.png ├── background_icon.png └── readme │ ├── screenshot_authorize_app.png │ ├── screenshot_nothing_playing.png │ ├── screenshot_with_coverart.png │ └── screenshot_without_coverart.png ├── node_helper.js └── package.json /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/.travis.yml -------------------------------------------------------------------------------- /Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/Icon.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/LICENSE -------------------------------------------------------------------------------- /MMM-NowPlayingOnSpotify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/MMM-NowPlayingOnSpotify.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/README.md -------------------------------------------------------------------------------- /authorization/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/authorization/app.js -------------------------------------------------------------------------------- /authorization/public/assets/client_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/authorization/public/assets/client_logic.js -------------------------------------------------------------------------------- /authorization/public/assets/styles.css: -------------------------------------------------------------------------------- 1 | #login, #loggedin { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /authorization/public/img/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/authorization/public/img/Icon.png -------------------------------------------------------------------------------- /authorization/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/authorization/public/index.html -------------------------------------------------------------------------------- /core/NPOS_DomBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/core/NPOS_DomBuilder.js -------------------------------------------------------------------------------- /core/SpotifyConnector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/core/SpotifyConnector.js -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/css/styles.css -------------------------------------------------------------------------------- /img/Icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/img/Icon.psd -------------------------------------------------------------------------------- /img/Spotify_Icon_RGB_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/img/Spotify_Icon_RGB_White.png -------------------------------------------------------------------------------- /img/Spotify_Logo_RGB_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/img/Spotify_Logo_RGB_White.png -------------------------------------------------------------------------------- /img/background_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/img/background_icon.png -------------------------------------------------------------------------------- /img/readme/screenshot_authorize_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/img/readme/screenshot_authorize_app.png -------------------------------------------------------------------------------- /img/readme/screenshot_nothing_playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/img/readme/screenshot_nothing_playing.png -------------------------------------------------------------------------------- /img/readme/screenshot_with_coverart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/img/readme/screenshot_with_coverart.png -------------------------------------------------------------------------------- /img/readme/screenshot_without_coverart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/img/readme/screenshot_without_coverart.png -------------------------------------------------------------------------------- /node_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/node_helper.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raywo/MMM-NowPlayingOnSpotify/HEAD/package.json --------------------------------------------------------------------------------