├── .gitignore ├── README.md ├── images ├── media-cleaner.png ├── myshows.png └── webhooks.png ├── manifest.json ├── package.json ├── repos.json └── update.mjs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shemanaev/jellyfin-plugin-repo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shemanaev/jellyfin-plugin-repo/HEAD/README.md -------------------------------------------------------------------------------- /images/media-cleaner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shemanaev/jellyfin-plugin-repo/HEAD/images/media-cleaner.png -------------------------------------------------------------------------------- /images/myshows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shemanaev/jellyfin-plugin-repo/HEAD/images/myshows.png -------------------------------------------------------------------------------- /images/webhooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shemanaev/jellyfin-plugin-repo/HEAD/images/webhooks.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shemanaev/jellyfin-plugin-repo/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shemanaev/jellyfin-plugin-repo/HEAD/package.json -------------------------------------------------------------------------------- /repos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shemanaev/jellyfin-plugin-repo/HEAD/repos.json -------------------------------------------------------------------------------- /update.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shemanaev/jellyfin-plugin-repo/HEAD/update.mjs --------------------------------------------------------------------------------