├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── doc └── now-playing.png ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpbzh/homebridge-plex/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpbzh/homebridge-plex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpbzh/homebridge-plex/HEAD/README.md -------------------------------------------------------------------------------- /doc/now-playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpbzh/homebridge-plex/HEAD/doc/now-playing.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpbzh/homebridge-plex/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpbzh/homebridge-plex/HEAD/package.json --------------------------------------------------------------------------------