├── .github └── workflows │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── icons ├── DownloaderHelper.png ├── Favorites_A.png ├── Favorites_B.png ├── MergeMessageNotify_121.png └── PluginAutoUpgrade.png ├── package.json ├── package.v2.json ├── plugins.v2 └── downloaderhelper │ ├── README.md │ ├── __init__.py │ ├── convertor.py │ └── module.py └── plugins ├── downloaderhelper ├── README.md ├── __init__.py ├── convertor.py └── module.py ├── mediacollecthelper ├── README.md ├── __init__.py ├── favorites │ ├── __init__.py │ └── linkding.py └── module.py ├── mergemessagenotify ├── __init__.py ├── channel │ ├── __init__.py │ └── custom │ │ ├── __init__.py │ │ ├── bark.py │ │ ├── chanify.py │ │ ├── dingtalkrobot.py │ │ ├── email.py │ │ ├── feishubot.py │ │ ├── gotify.py │ │ ├── http.py │ │ ├── iyuu.py │ │ ├── ntfy.py │ │ ├── onebot11.py │ │ ├── pushdeer.py │ │ ├── pushme.py │ │ ├── pushplus.py │ │ ├── qiyeweixinbot.py │ │ └── serverchan.py ├── module.py └── util.py ├── mergesiteswitch └── __init__.py ├── pluginautoupgrade └── __init__.py └── systemprocess └── __init__.py /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/README.md -------------------------------------------------------------------------------- /icons/DownloaderHelper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/icons/DownloaderHelper.png -------------------------------------------------------------------------------- /icons/Favorites_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/icons/Favorites_A.png -------------------------------------------------------------------------------- /icons/Favorites_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/icons/Favorites_B.png -------------------------------------------------------------------------------- /icons/MergeMessageNotify_121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/icons/MergeMessageNotify_121.png -------------------------------------------------------------------------------- /icons/PluginAutoUpgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/icons/PluginAutoUpgrade.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/package.json -------------------------------------------------------------------------------- /package.v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/package.v2.json -------------------------------------------------------------------------------- /plugins.v2/downloaderhelper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins.v2/downloaderhelper/README.md -------------------------------------------------------------------------------- /plugins.v2/downloaderhelper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins.v2/downloaderhelper/__init__.py -------------------------------------------------------------------------------- /plugins.v2/downloaderhelper/convertor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins.v2/downloaderhelper/convertor.py -------------------------------------------------------------------------------- /plugins.v2/downloaderhelper/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins.v2/downloaderhelper/module.py -------------------------------------------------------------------------------- /plugins/downloaderhelper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/downloaderhelper/README.md -------------------------------------------------------------------------------- /plugins/downloaderhelper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/downloaderhelper/__init__.py -------------------------------------------------------------------------------- /plugins/downloaderhelper/convertor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/downloaderhelper/convertor.py -------------------------------------------------------------------------------- /plugins/downloaderhelper/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/downloaderhelper/module.py -------------------------------------------------------------------------------- /plugins/mediacollecthelper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mediacollecthelper/README.md -------------------------------------------------------------------------------- /plugins/mediacollecthelper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mediacollecthelper/__init__.py -------------------------------------------------------------------------------- /plugins/mediacollecthelper/favorites/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mediacollecthelper/favorites/__init__.py -------------------------------------------------------------------------------- /plugins/mediacollecthelper/favorites/linkding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mediacollecthelper/favorites/linkding.py -------------------------------------------------------------------------------- /plugins/mediacollecthelper/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mediacollecthelper/module.py -------------------------------------------------------------------------------- /plugins/mergemessagenotify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mergemessagenotify/__init__.py -------------------------------------------------------------------------------- /plugins/mergemessagenotify/channel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mergemessagenotify/channel/__init__.py -------------------------------------------------------------------------------- /plugins/mergemessagenotify/channel/custom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mergemessagenotify/channel/custom/__init__.py -------------------------------------------------------------------------------- /plugins/mergemessagenotify/channel/custom/bark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mergemessagenotify/channel/custom/bark.py -------------------------------------------------------------------------------- /plugins/mergemessagenotify/channel/custom/chanify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mergemessagenotify/channel/custom/chanify.py -------------------------------------------------------------------------------- /plugins/mergemessagenotify/channel/custom/dingtalkrobot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mergemessagenotify/channel/custom/dingtalkrobot.py -------------------------------------------------------------------------------- /plugins/mergemessagenotify/channel/custom/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mergemessagenotify/channel/custom/email.py -------------------------------------------------------------------------------- /plugins/mergemessagenotify/channel/custom/feishubot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mergemessagenotify/channel/custom/feishubot.py -------------------------------------------------------------------------------- /plugins/mergemessagenotify/channel/custom/gotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mergemessagenotify/channel/custom/gotify.py -------------------------------------------------------------------------------- /plugins/mergemessagenotify/channel/custom/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mergemessagenotify/channel/custom/http.py -------------------------------------------------------------------------------- /plugins/mergemessagenotify/channel/custom/iyuu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mergemessagenotify/channel/custom/iyuu.py -------------------------------------------------------------------------------- /plugins/mergemessagenotify/channel/custom/ntfy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mergemessagenotify/channel/custom/ntfy.py -------------------------------------------------------------------------------- /plugins/mergemessagenotify/channel/custom/onebot11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mergemessagenotify/channel/custom/onebot11.py -------------------------------------------------------------------------------- /plugins/mergemessagenotify/channel/custom/pushdeer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mergemessagenotify/channel/custom/pushdeer.py -------------------------------------------------------------------------------- /plugins/mergemessagenotify/channel/custom/pushme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mergemessagenotify/channel/custom/pushme.py -------------------------------------------------------------------------------- /plugins/mergemessagenotify/channel/custom/pushplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mergemessagenotify/channel/custom/pushplus.py -------------------------------------------------------------------------------- /plugins/mergemessagenotify/channel/custom/qiyeweixinbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mergemessagenotify/channel/custom/qiyeweixinbot.py -------------------------------------------------------------------------------- /plugins/mergemessagenotify/channel/custom/serverchan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mergemessagenotify/channel/custom/serverchan.py -------------------------------------------------------------------------------- /plugins/mergemessagenotify/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mergemessagenotify/module.py -------------------------------------------------------------------------------- /plugins/mergemessagenotify/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mergemessagenotify/util.py -------------------------------------------------------------------------------- /plugins/mergesiteswitch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/mergesiteswitch/__init__.py -------------------------------------------------------------------------------- /plugins/pluginautoupgrade/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/pluginautoupgrade/__init__.py -------------------------------------------------------------------------------- /plugins/systemprocess/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotlcc/MoviePilot-Plugins-Third/HEAD/plugins/systemprocess/__init__.py --------------------------------------------------------------------------------