├── .appcast.xml ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── icon.png ├── next-dark.png ├── next.png ├── playpause-dark.png ├── playpause.png ├── prev-dark.png └── prev.png ├── package.json └── src ├── applescript.js ├── data.js ├── manifest.json └── sketchpotify.js /.appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketchpotify/HEAD/.appcast.xml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketchpotify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketchpotify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketchpotify/HEAD/README.md -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketchpotify/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/next-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketchpotify/HEAD/assets/next-dark.png -------------------------------------------------------------------------------- /assets/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketchpotify/HEAD/assets/next.png -------------------------------------------------------------------------------- /assets/playpause-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketchpotify/HEAD/assets/playpause-dark.png -------------------------------------------------------------------------------- /assets/playpause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketchpotify/HEAD/assets/playpause.png -------------------------------------------------------------------------------- /assets/prev-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketchpotify/HEAD/assets/prev-dark.png -------------------------------------------------------------------------------- /assets/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketchpotify/HEAD/assets/prev.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketchpotify/HEAD/package.json -------------------------------------------------------------------------------- /src/applescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketchpotify/HEAD/src/applescript.js -------------------------------------------------------------------------------- /src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketchpotify/HEAD/src/data.js -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketchpotify/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/sketchpotify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketchpotify/HEAD/src/sketchpotify.js --------------------------------------------------------------------------------