├── .gitignore ├── README.md └── plex-subscene.bundle └── Contents ├── Code └── __init__.py ├── DefaultPrefs.json ├── Info.plist └── Strings └── en.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pannal/plex-subscene/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pannal/plex-subscene/HEAD/README.md -------------------------------------------------------------------------------- /plex-subscene.bundle/Contents/Code/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pannal/plex-subscene/HEAD/plex-subscene.bundle/Contents/Code/__init__.py -------------------------------------------------------------------------------- /plex-subscene.bundle/Contents/DefaultPrefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pannal/plex-subscene/HEAD/plex-subscene.bundle/Contents/DefaultPrefs.json -------------------------------------------------------------------------------- /plex-subscene.bundle/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pannal/plex-subscene/HEAD/plex-subscene.bundle/Contents/Info.plist -------------------------------------------------------------------------------- /plex-subscene.bundle/Contents/Strings/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ignacio" 3 | } 4 | --------------------------------------------------------------------------------