├── .gitignore ├── .npmignore ├── .npmrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── config.json.example ├── docs ├── CNAME └── index.html ├── example-music.png ├── example.png ├── package.json └── scripts ├── apple ├── index.html ├── main.js ├── renderer.js └── style.css ├── custom ├── index.html ├── main.js ├── renderer.js └── style.css ├── foobar ├── index.html ├── main.js ├── renderer.js └── style.css ├── google ├── index.html ├── main.js ├── renderer.js └── style.css ├── imdb ├── index.html ├── main.js ├── renderer.js └── style.css ├── lastfm ├── index.html ├── main.js ├── renderer.js └── style.css ├── spotify ├── index.html ├── main.js ├── renderer.js └── style.css └── youtube ├── index.html ├── main.js ├── renderer.js └── style.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/README.md -------------------------------------------------------------------------------- /config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/config.json.example -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | sp.wwdc.date -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/docs/index.html -------------------------------------------------------------------------------- /example-music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/example-music.png -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/example.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/package.json -------------------------------------------------------------------------------- /scripts/apple/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/apple/index.html -------------------------------------------------------------------------------- /scripts/apple/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/apple/main.js -------------------------------------------------------------------------------- /scripts/apple/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/apple/renderer.js -------------------------------------------------------------------------------- /scripts/apple/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/apple/style.css -------------------------------------------------------------------------------- /scripts/custom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/custom/index.html -------------------------------------------------------------------------------- /scripts/custom/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/custom/main.js -------------------------------------------------------------------------------- /scripts/custom/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/custom/renderer.js -------------------------------------------------------------------------------- /scripts/custom/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/custom/style.css -------------------------------------------------------------------------------- /scripts/foobar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/foobar/index.html -------------------------------------------------------------------------------- /scripts/foobar/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/foobar/main.js -------------------------------------------------------------------------------- /scripts/foobar/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/foobar/renderer.js -------------------------------------------------------------------------------- /scripts/foobar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/foobar/style.css -------------------------------------------------------------------------------- /scripts/google/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/google/index.html -------------------------------------------------------------------------------- /scripts/google/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/google/main.js -------------------------------------------------------------------------------- /scripts/google/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/google/renderer.js -------------------------------------------------------------------------------- /scripts/google/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/google/style.css -------------------------------------------------------------------------------- /scripts/imdb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/imdb/index.html -------------------------------------------------------------------------------- /scripts/imdb/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/imdb/main.js -------------------------------------------------------------------------------- /scripts/imdb/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/imdb/renderer.js -------------------------------------------------------------------------------- /scripts/imdb/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/imdb/style.css -------------------------------------------------------------------------------- /scripts/lastfm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/lastfm/index.html -------------------------------------------------------------------------------- /scripts/lastfm/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/lastfm/main.js -------------------------------------------------------------------------------- /scripts/lastfm/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/lastfm/renderer.js -------------------------------------------------------------------------------- /scripts/lastfm/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/lastfm/style.css -------------------------------------------------------------------------------- /scripts/spotify/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/spotify/index.html -------------------------------------------------------------------------------- /scripts/spotify/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/spotify/main.js -------------------------------------------------------------------------------- /scripts/spotify/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/spotify/renderer.js -------------------------------------------------------------------------------- /scripts/spotify/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/spotify/style.css -------------------------------------------------------------------------------- /scripts/youtube/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/youtube/index.html -------------------------------------------------------------------------------- /scripts/youtube/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/youtube/main.js -------------------------------------------------------------------------------- /scripts/youtube/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/youtube/renderer.js -------------------------------------------------------------------------------- /scripts/youtube/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianschiavo/SimplePresence/HEAD/scripts/youtube/style.css --------------------------------------------------------------------------------