├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── config.json ├── extension ├── 128.png ├── background.js ├── content.js └── manifest.json ├── index.js ├── package.json └── spotify_zlink.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entriphy/Spotify-PlayCount/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entriphy/Spotify-PlayCount/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entriphy/Spotify-PlayCount/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entriphy/Spotify-PlayCount/HEAD/app.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entriphy/Spotify-PlayCount/HEAD/config.json -------------------------------------------------------------------------------- /extension/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entriphy/Spotify-PlayCount/HEAD/extension/128.png -------------------------------------------------------------------------------- /extension/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entriphy/Spotify-PlayCount/HEAD/extension/background.js -------------------------------------------------------------------------------- /extension/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entriphy/Spotify-PlayCount/HEAD/extension/content.js -------------------------------------------------------------------------------- /extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entriphy/Spotify-PlayCount/HEAD/extension/manifest.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entriphy/Spotify-PlayCount/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entriphy/Spotify-PlayCount/HEAD/package.json -------------------------------------------------------------------------------- /spotify_zlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entriphy/Spotify-PlayCount/HEAD/spotify_zlink.js --------------------------------------------------------------------------------