├── .gitignore ├── License ├── MP-Plugins └── plextools │ ├── __init__.py │ ├── add_info.py │ ├── logo.jpg │ └── overlays │ ├── clean.jpg │ ├── font │ ├── ALIBABA_Bold.otf │ └── fzlth.ttf │ └── img │ ├── black │ ├── 1080P.png │ ├── 320P.png │ ├── 480P.png │ ├── 4K.png │ ├── 720P.png │ ├── 8K.png │ ├── DV.png │ ├── HDR.png │ └── SDR.png │ └── empty │ ├── 1080P.png │ ├── 320P.png │ ├── 480P.png │ ├── 4K.png │ ├── 576P.png │ ├── 720P.png │ ├── 8K.png │ ├── DV.png │ ├── HDR.png │ ├── SDP.png │ └── SDR.png ├── MR-Plugins ├── 115_tools │ ├── __init__.py │ ├── command.py │ ├── cookie_to_json.py │ ├── get_115_cookie.py │ ├── logo.jpg │ └── manifest.json ├── audio_tools │ ├── README.md │ └── audio_tools │ │ ├── README.md │ │ ├── __init__.py │ │ ├── assets │ │ ├── captcha.js │ │ ├── chrome-linux64 │ │ │ └── chromedriver │ │ └── xm_sign.html │ │ ├── audio_tools.py │ │ ├── command.py │ │ ├── config.py │ │ ├── draw.py │ │ ├── dws1.6.8.js │ │ ├── event.py │ │ ├── functions.py │ │ ├── get_xm_sign.py │ │ ├── get_xm_sign1.py │ │ ├── install_package.py │ │ ├── local_to_115.py │ │ ├── logo.jpg │ │ ├── manifest.json │ │ ├── notify_cover │ │ ├── lh.ttf │ │ ├── reader_flag.png │ │ └── ys.ttf │ │ ├── podcast.py │ │ ├── podcast │ │ ├── ALIBABA-Font-Bold.otf │ │ ├── axios.min.js │ │ ├── bars.svg │ │ ├── bg.png │ │ ├── bg_pc.png │ │ ├── copy.svg │ │ ├── cover_bg.png │ │ ├── cover_bg2.png │ │ ├── default.jpg │ │ ├── des.json │ │ ├── empty.svg │ │ ├── fh.ttf │ │ ├── icon.png │ │ ├── index.css │ │ ├── index.html │ │ ├── open.svg │ │ ├── podcast.css │ │ ├── podcast.js │ │ ├── podcast.svg │ │ ├── poster.jpg │ │ ├── reader.svg │ │ ├── searchicon.svg │ │ ├── sub.svg │ │ ├── tock.caf │ │ ├── tock.mp3 │ │ ├── vant.min.js │ │ └── vue@3.js │ │ ├── xm_sign.html │ │ ├── xmly_download.py │ │ ├── xmlyfetcher │ │ └── 音乐分类封面 │ │ ├── 华语音乐 │ │ └── cover.jpg │ │ ├── 日韩音乐 │ │ └── cover.jpg │ │ ├── 欧美音乐 │ │ └── cover.jpg │ │ ├── 纯音乐 │ │ └── cover.jpg │ │ └── 这些音乐分类封面放到对应音乐文件夹的根目录,cover.jpg 的文件名不要做任何修改.txt ├── daily_news │ ├── README.md │ └── daily_news │ │ ├── __init__.py │ │ ├── bg │ │ ├── cloud.png │ │ ├── dust.png │ │ ├── fog.png │ │ ├── haze.png │ │ ├── rain.png │ │ ├── snow.png │ │ └── sunny.png │ │ ├── command.py │ │ ├── daily_news.py │ │ ├── daily_news.py.backup │ │ ├── font │ │ ├── ALIBABA_Bold.otf │ │ ├── ALIBABA_Regular.otf │ │ ├── qweather-icons.ttf │ │ ├── syht.otf │ │ └── zh.ttf │ │ ├── install_package.py │ │ ├── logo.jpg │ │ ├── manifest.json │ │ ├── weather.jpg │ │ └── weather.png ├── notify_server │ ├── README.md │ └── notify_server │ │ ├── __init__.py │ │ ├── logo.jpg │ │ ├── manifest.json │ │ └── notify_server.py ├── plex_tools │ ├── README.md │ └── plex_tools │ │ ├── __init__.py │ │ ├── add_info.py │ │ ├── command.py │ │ ├── get_top250.py │ │ ├── install_package.py │ │ ├── logo.jpg │ │ ├── main.py │ │ ├── manifest.json │ │ ├── overlays │ │ ├── clean.jpg │ │ ├── font │ │ │ ├── ALIBABA_Bold.otf │ │ │ └── fzlth.ttf │ │ └── img │ │ │ ├── black │ │ │ ├── 1080P.png │ │ │ ├── 320P.png │ │ │ ├── 480P.png │ │ │ ├── 4K.png │ │ │ ├── 720P.png │ │ │ ├── 8K.png │ │ │ ├── DV.png │ │ │ ├── HDR.png │ │ │ └── SDR.png │ │ │ └── empty │ │ │ ├── 1080P.png │ │ │ ├── 320P.png │ │ │ ├── 480P.png │ │ │ ├── 4K.png │ │ │ ├── 576P.png │ │ │ ├── 720P.png │ │ │ ├── 8K.png │ │ │ ├── DV.png │ │ │ ├── HDR+DV.png │ │ │ ├── HDR.png │ │ │ ├── SDP.png │ │ │ └── SDR.png │ │ ├── plex_image_cleanup.py │ │ ├── plex_sortout.py │ │ └── sub_to_mbot.py ├── qb_tools │ ├── README.md │ └── qb_tools │ │ ├── __init__.py │ │ ├── command.py │ │ ├── logo.png │ │ ├── manifest.json │ │ ├── qb_tools.py │ │ └── remove_empty.py ├── sites_message_org │ ├── __init__.py │ ├── command.py │ ├── logo.jpg │ ├── manifest.json │ └── sites_message.py ├── sites_message_wx │ ├── README.md │ └── sites_message_wx │ │ ├── __init__.py │ │ ├── command.py │ │ ├── logo.png │ │ ├── manifest.json │ │ ├── pic │ │ ├── HDHome.gif │ │ ├── audiences.gif │ │ ├── chdbits.gif │ │ ├── hares.gif │ │ ├── hdchina.gif │ │ ├── hdsky.gif │ │ ├── hhan.gif │ │ ├── keepfrds.gif │ │ ├── lemonhd.gif │ │ ├── msg_default.gif │ │ ├── mteam.gif │ │ ├── notice_default.gif │ │ ├── opencd.gif │ │ ├── ourbits.gif │ │ ├── pterclub.gif │ │ ├── ssd.gif │ │ ├── tjupt.gif │ │ └── ultrahd.gif │ │ ├── sites_message.py │ │ └── sites_message_backup ├── truenas_notify │ ├── README.md │ └── truenas_notify │ │ ├── __init__.py │ │ ├── logo.jpg │ │ ├── manifest.json │ │ ├── truenas_notify.py │ │ └── truenas_notify_api.py.backup ├── tv_calendar │ ├── README.md │ └── tv_calendar_Alano │ │ ├── __init__.py │ │ ├── command.py │ │ ├── frontend │ │ ├── 1080P.svg │ │ ├── 320P.svg │ │ ├── 480P.svg │ │ ├── 4K.svg │ │ ├── 720P.svg │ │ ├── 8K.svg │ │ ├── ALIBABA-Font-Bold.otf │ │ ├── DV.svg │ │ ├── HDR.svg │ │ ├── SDR.svg │ │ ├── axios.min.js │ │ ├── bg.png │ │ ├── bg_pc.png │ │ ├── episode.html │ │ ├── icon.png │ │ ├── index.css │ │ ├── manifest.json │ │ ├── original.json │ │ ├── title.png │ │ ├── today.svg │ │ ├── tv_calendar.html │ │ ├── tv_calendar.json │ │ ├── updated.svg │ │ ├── vant.min.js │ │ └── vue@3.js │ │ ├── logo.jpg │ │ ├── manifest.json │ │ └── tv_calendar.py └── 豆瓣资源下载大师 │ └── 豆瓣资源下载大师.js ├── NH-Plugins ├── daily_news │ ├── README.md │ ├── __init__.py │ ├── bg │ │ ├── cloud.png │ │ ├── dust.png │ │ ├── fog.png │ │ ├── haze.png │ │ ├── rain.png │ │ ├── snow.png │ │ └── sunny.png │ ├── daily_news.cpython-312-x86_64-linux-gnu.so │ ├── font │ │ ├── ALIBABA_Bold.otf │ │ ├── ALIBABA_Regular.otf │ │ ├── qweather-icons.ttf │ │ ├── syht.otf │ │ └── zh.ttf │ ├── logo.jpg │ ├── logo_thum.jpg │ ├── manifest.json │ ├── requirements.txt │ ├── router.py │ └── weather.png ├── iptv_monitor │ ├── README.MD │ ├── __init__.py │ ├── get_epg_info.cpython-312-x86_64-linux-gnu.so │ ├── iptv.cpython-312-x86_64-linux-gnu.so │ ├── iptv │ │ ├── epg_info_new.json │ │ ├── iptv-png.m3u │ │ ├── iptv.json │ │ ├── iptv.m3u │ │ └── merged.json │ ├── logo.jpg │ ├── logo_thum.png │ ├── manifest.json │ ├── merged.cpython-312-x86_64-linux-gnu.so │ ├── requirements.txt │ └── router.py ├── truenas_notify │ ├── __init__.py │ ├── cover │ │ ├── default.png │ │ ├── ntp.png │ │ ├── rsync.png │ │ ├── scrub.png │ │ ├── smart.png │ │ ├── space.png │ │ ├── sys_update.png │ │ ├── truenas.png │ │ ├── update.png │ │ ├── ups_battery.png │ │ ├── ups_lost.png │ │ └── ups_on.png │ ├── logo.jpg │ ├── logo_thum.png │ ├── manifest.json │ ├── requirements.txt │ ├── router.py │ └── truenas_notify.py └── wx-nullbr │ ├── __init__.py │ ├── api │ ├── __init__.py │ ├── nullbr.py │ └── tmdbapi.py │ ├── app.py │ ├── manifest.json │ └── utils.py ├── Plex ├── README.md ├── config.yml ├── pic │ ├── guide-tautulli.png │ ├── guide-wecom.png │ ├── plex_default.png │ ├── plex_music_defeat.jpg │ ├── preview.png │ ├── update_bg.gif │ └── 图片说明 ├── wxapp_notify.py ├── wxapp_notify.py.backup.no.proxy └── wxapp_notify_backup_20220929.py ├── README.md ├── TrueNas_notify ├── README.md ├── img │ ├── default.png │ ├── ntp.png │ ├── scrub.png │ ├── smart.png │ ├── space.png │ ├── truenas.png │ ├── update.png │ ├── ups_battery.png │ ├── ups_lost.png │ └── ups_on.png ├── truenas_notify.py └── truenas_notify_logo.jpg ├── iCloudPD ├── README.md └── media_id_images │ ├── media_id_delete.gif │ ├── media_id_download.gif │ ├── media_id_expiration_warning.gif │ ├── media_id_startup.gif │ ├── 头像镂空 │ ├── media_id_delete.png │ ├── media_id_download.png │ ├── media_id_expiration.png │ ├── media_id_startup.png │ └── media_id_warning.png │ └── 推送图片 └── qinglong └── 115Master ├── 115.png ├── README.md ├── __init__.py ├── add_env.py ├── component.py ├── config.py ├── cookies ├── pull.txt └── push.txt ├── crack_captcha.py ├── del.py ├── get_new_cookie.py ├── life_list_monitor.py ├── notify_server.py ├── pull.py ├── pull_after.py ├── push_server.py ├── qinglong_api.py ├── qrcode_cookie_115_web.py ├── requirements.txt ├── sign.py └── util ├── __init__.py └── predicate.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __pycache__ -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/License -------------------------------------------------------------------------------- /MP-Plugins/plextools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/__init__.py -------------------------------------------------------------------------------- /MP-Plugins/plextools/add_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/add_info.py -------------------------------------------------------------------------------- /MP-Plugins/plextools/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/logo.jpg -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/clean.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/clean.jpg -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/font/ALIBABA_Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/font/ALIBABA_Bold.otf -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/font/fzlth.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/font/fzlth.ttf -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/img/black/1080P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/img/black/1080P.png -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/img/black/320P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/img/black/320P.png -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/img/black/480P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/img/black/480P.png -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/img/black/4K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/img/black/4K.png -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/img/black/720P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/img/black/720P.png -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/img/black/8K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/img/black/8K.png -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/img/black/DV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/img/black/DV.png -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/img/black/HDR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/img/black/HDR.png -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/img/black/SDR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/img/black/SDR.png -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/img/empty/1080P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/img/empty/1080P.png -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/img/empty/320P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/img/empty/320P.png -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/img/empty/480P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/img/empty/480P.png -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/img/empty/4K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/img/empty/4K.png -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/img/empty/576P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/img/empty/576P.png -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/img/empty/720P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/img/empty/720P.png -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/img/empty/8K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/img/empty/8K.png -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/img/empty/DV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/img/empty/DV.png -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/img/empty/HDR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/img/empty/HDR.png -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/img/empty/SDP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/img/empty/SDP.png -------------------------------------------------------------------------------- /MP-Plugins/plextools/overlays/img/empty/SDR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MP-Plugins/plextools/overlays/img/empty/SDR.png -------------------------------------------------------------------------------- /MR-Plugins/115_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/115_tools/__init__.py -------------------------------------------------------------------------------- /MR-Plugins/115_tools/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/115_tools/command.py -------------------------------------------------------------------------------- /MR-Plugins/115_tools/cookie_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/115_tools/cookie_to_json.py -------------------------------------------------------------------------------- /MR-Plugins/115_tools/get_115_cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/115_tools/get_115_cookie.py -------------------------------------------------------------------------------- /MR-Plugins/115_tools/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/115_tools/logo.jpg -------------------------------------------------------------------------------- /MR-Plugins/115_tools/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/115_tools/manifest.json -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/README.md -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/README.md -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/__init__.py -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/assets/captcha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/assets/captcha.js -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/assets/chrome-linux64/chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/assets/chrome-linux64/chromedriver -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/assets/xm_sign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/assets/xm_sign.html -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/audio_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/audio_tools.py -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/command.py -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/config.py -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/draw.py -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/dws1.6.8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/dws1.6.8.js -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/event.py -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/functions.py -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/get_xm_sign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/get_xm_sign.py -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/get_xm_sign1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/get_xm_sign1.py -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/install_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/install_package.py -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/local_to_115.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/local_to_115.py -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/logo.jpg -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/manifest.json -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/notify_cover/lh.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/notify_cover/lh.ttf -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/notify_cover/reader_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/notify_cover/reader_flag.png -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/notify_cover/ys.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/notify_cover/ys.ttf -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast.py -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/ALIBABA-Font-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/ALIBABA-Font-Bold.otf -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/axios.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/axios.min.js -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/bars.svg -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/bg.png -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/bg_pc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/bg_pc.png -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/copy.svg -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/cover_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/cover_bg.png -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/cover_bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/cover_bg2.png -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/default.jpg -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/des.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/des.json -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/empty.svg -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/fh.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/fh.ttf -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/icon.png -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/index.css -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/index.html -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/open.svg -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/podcast.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/podcast.css -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/podcast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/podcast.js -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/podcast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/podcast.svg -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/poster.jpg -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/reader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/reader.svg -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/searchicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/searchicon.svg -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/sub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/sub.svg -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/tock.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/tock.caf -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/tock.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/tock.mp3 -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/vant.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/vant.min.js -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/podcast/vue@3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/podcast/vue@3.js -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/xm_sign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/xm_sign.html -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/xmly_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/xmly_download.py -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/xmlyfetcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/xmlyfetcher -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/音乐分类封面/华语音乐/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/音乐分类封面/华语音乐/cover.jpg -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/音乐分类封面/日韩音乐/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/音乐分类封面/日韩音乐/cover.jpg -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/音乐分类封面/欧美音乐/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/音乐分类封面/欧美音乐/cover.jpg -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/音乐分类封面/纯音乐/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/audio_tools/audio_tools/音乐分类封面/纯音乐/cover.jpg -------------------------------------------------------------------------------- /MR-Plugins/audio_tools/audio_tools/音乐分类封面/这些音乐分类封面放到对应音乐文件夹的根目录,cover.jpg 的文件名不要做任何修改.txt: -------------------------------------------------------------------------------- 1 | 这些音乐分类封面放到对应音乐文件夹的根目录 2 | 3 | cover.jpg 的文件名不要做任何修改 -------------------------------------------------------------------------------- /MR-Plugins/daily_news/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/daily_news/README.md -------------------------------------------------------------------------------- /MR-Plugins/daily_news/daily_news/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/daily_news/daily_news/__init__.py -------------------------------------------------------------------------------- /MR-Plugins/daily_news/daily_news/bg/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/daily_news/daily_news/bg/cloud.png -------------------------------------------------------------------------------- /MR-Plugins/daily_news/daily_news/bg/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/daily_news/daily_news/bg/dust.png -------------------------------------------------------------------------------- /MR-Plugins/daily_news/daily_news/bg/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/daily_news/daily_news/bg/fog.png -------------------------------------------------------------------------------- /MR-Plugins/daily_news/daily_news/bg/haze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/daily_news/daily_news/bg/haze.png -------------------------------------------------------------------------------- /MR-Plugins/daily_news/daily_news/bg/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/daily_news/daily_news/bg/rain.png -------------------------------------------------------------------------------- /MR-Plugins/daily_news/daily_news/bg/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/daily_news/daily_news/bg/snow.png -------------------------------------------------------------------------------- /MR-Plugins/daily_news/daily_news/bg/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/daily_news/daily_news/bg/sunny.png -------------------------------------------------------------------------------- /MR-Plugins/daily_news/daily_news/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/daily_news/daily_news/command.py -------------------------------------------------------------------------------- /MR-Plugins/daily_news/daily_news/daily_news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/daily_news/daily_news/daily_news.py -------------------------------------------------------------------------------- /MR-Plugins/daily_news/daily_news/daily_news.py.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/daily_news/daily_news/daily_news.py.backup -------------------------------------------------------------------------------- /MR-Plugins/daily_news/daily_news/font/ALIBABA_Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/daily_news/daily_news/font/ALIBABA_Bold.otf -------------------------------------------------------------------------------- /MR-Plugins/daily_news/daily_news/font/ALIBABA_Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/daily_news/daily_news/font/ALIBABA_Regular.otf -------------------------------------------------------------------------------- /MR-Plugins/daily_news/daily_news/font/qweather-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/daily_news/daily_news/font/qweather-icons.ttf -------------------------------------------------------------------------------- /MR-Plugins/daily_news/daily_news/font/syht.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/daily_news/daily_news/font/syht.otf -------------------------------------------------------------------------------- /MR-Plugins/daily_news/daily_news/font/zh.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/daily_news/daily_news/font/zh.ttf -------------------------------------------------------------------------------- /MR-Plugins/daily_news/daily_news/install_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/daily_news/daily_news/install_package.py -------------------------------------------------------------------------------- /MR-Plugins/daily_news/daily_news/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/daily_news/daily_news/logo.jpg -------------------------------------------------------------------------------- /MR-Plugins/daily_news/daily_news/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/daily_news/daily_news/manifest.json -------------------------------------------------------------------------------- /MR-Plugins/daily_news/daily_news/weather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/daily_news/daily_news/weather.jpg -------------------------------------------------------------------------------- /MR-Plugins/daily_news/daily_news/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/daily_news/daily_news/weather.png -------------------------------------------------------------------------------- /MR-Plugins/notify_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/notify_server/README.md -------------------------------------------------------------------------------- /MR-Plugins/notify_server/notify_server/__init__.py: -------------------------------------------------------------------------------- 1 | from .notify_server import * -------------------------------------------------------------------------------- /MR-Plugins/notify_server/notify_server/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/notify_server/notify_server/logo.jpg -------------------------------------------------------------------------------- /MR-Plugins/notify_server/notify_server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/notify_server/notify_server/manifest.json -------------------------------------------------------------------------------- /MR-Plugins/notify_server/notify_server/notify_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/notify_server/notify_server/notify_server.py -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/README.md -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/__init__.py -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/add_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/add_info.py -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/command.py -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/get_top250.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/get_top250.py -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/install_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/install_package.py -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/logo.jpg -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/main.py -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/manifest.json -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/clean.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/clean.jpg -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/font/ALIBABA_Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/font/ALIBABA_Bold.otf -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/font/fzlth.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/font/fzlth.ttf -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/img/black/1080P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/img/black/1080P.png -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/img/black/320P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/img/black/320P.png -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/img/black/480P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/img/black/480P.png -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/img/black/4K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/img/black/4K.png -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/img/black/720P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/img/black/720P.png -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/img/black/8K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/img/black/8K.png -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/img/black/DV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/img/black/DV.png -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/img/black/HDR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/img/black/HDR.png -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/img/black/SDR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/img/black/SDR.png -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/img/empty/1080P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/img/empty/1080P.png -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/img/empty/320P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/img/empty/320P.png -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/img/empty/480P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/img/empty/480P.png -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/img/empty/4K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/img/empty/4K.png -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/img/empty/576P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/img/empty/576P.png -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/img/empty/720P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/img/empty/720P.png -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/img/empty/8K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/img/empty/8K.png -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/img/empty/DV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/img/empty/DV.png -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/img/empty/HDR+DV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/img/empty/HDR+DV.png -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/img/empty/HDR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/img/empty/HDR.png -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/img/empty/SDP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/img/empty/SDP.png -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/overlays/img/empty/SDR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/overlays/img/empty/SDR.png -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/plex_image_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/plex_image_cleanup.py -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/plex_sortout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/plex_sortout.py -------------------------------------------------------------------------------- /MR-Plugins/plex_tools/plex_tools/sub_to_mbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/plex_tools/plex_tools/sub_to_mbot.py -------------------------------------------------------------------------------- /MR-Plugins/qb_tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/qb_tools/README.md -------------------------------------------------------------------------------- /MR-Plugins/qb_tools/qb_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/qb_tools/qb_tools/__init__.py -------------------------------------------------------------------------------- /MR-Plugins/qb_tools/qb_tools/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/qb_tools/qb_tools/command.py -------------------------------------------------------------------------------- /MR-Plugins/qb_tools/qb_tools/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/qb_tools/qb_tools/logo.png -------------------------------------------------------------------------------- /MR-Plugins/qb_tools/qb_tools/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/qb_tools/qb_tools/manifest.json -------------------------------------------------------------------------------- /MR-Plugins/qb_tools/qb_tools/qb_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/qb_tools/qb_tools/qb_tools.py -------------------------------------------------------------------------------- /MR-Plugins/qb_tools/qb_tools/remove_empty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/qb_tools/qb_tools/remove_empty.py -------------------------------------------------------------------------------- /MR-Plugins/sites_message_org/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_org/__init__.py -------------------------------------------------------------------------------- /MR-Plugins/sites_message_org/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_org/command.py -------------------------------------------------------------------------------- /MR-Plugins/sites_message_org/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_org/logo.jpg -------------------------------------------------------------------------------- /MR-Plugins/sites_message_org/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_org/manifest.json -------------------------------------------------------------------------------- /MR-Plugins/sites_message_org/sites_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_org/sites_message.py -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/README.md -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/__init__.py -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/command.py -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/logo.png -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/manifest.json -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/pic/HDHome.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/pic/HDHome.gif -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/pic/audiences.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/pic/audiences.gif -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/pic/chdbits.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/pic/chdbits.gif -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/pic/hares.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/pic/hares.gif -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/pic/hdchina.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/pic/hdchina.gif -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/pic/hdsky.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/pic/hdsky.gif -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/pic/hhan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/pic/hhan.gif -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/pic/keepfrds.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/pic/keepfrds.gif -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/pic/lemonhd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/pic/lemonhd.gif -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/pic/msg_default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/pic/msg_default.gif -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/pic/mteam.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/pic/mteam.gif -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/pic/notice_default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/pic/notice_default.gif -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/pic/opencd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/pic/opencd.gif -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/pic/ourbits.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/pic/ourbits.gif -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/pic/pterclub.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/pic/pterclub.gif -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/pic/ssd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/pic/ssd.gif -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/pic/tjupt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/pic/tjupt.gif -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/pic/ultrahd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/pic/ultrahd.gif -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/sites_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/sites_message.py -------------------------------------------------------------------------------- /MR-Plugins/sites_message_wx/sites_message_wx/sites_message_backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/sites_message_wx/sites_message_wx/sites_message_backup -------------------------------------------------------------------------------- /MR-Plugins/truenas_notify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/truenas_notify/README.md -------------------------------------------------------------------------------- /MR-Plugins/truenas_notify/truenas_notify/__init__.py: -------------------------------------------------------------------------------- 1 | from .truenas_notify import * 2 | -------------------------------------------------------------------------------- /MR-Plugins/truenas_notify/truenas_notify/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/truenas_notify/truenas_notify/logo.jpg -------------------------------------------------------------------------------- /MR-Plugins/truenas_notify/truenas_notify/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/truenas_notify/truenas_notify/manifest.json -------------------------------------------------------------------------------- /MR-Plugins/truenas_notify/truenas_notify/truenas_notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/truenas_notify/truenas_notify/truenas_notify.py -------------------------------------------------------------------------------- /MR-Plugins/truenas_notify/truenas_notify/truenas_notify_api.py.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/truenas_notify/truenas_notify/truenas_notify_api.py.backup -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/README.md -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/__init__.py -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/command.py -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/1080P.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/1080P.svg -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/320P.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/320P.svg -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/480P.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/480P.svg -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/4K.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/4K.svg -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/720P.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/720P.svg -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/8K.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/8K.svg -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/ALIBABA-Font-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/ALIBABA-Font-Bold.otf -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/DV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/DV.svg -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/HDR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/HDR.svg -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/SDR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/SDR.svg -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/axios.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/axios.min.js -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/bg.png -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/bg_pc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/bg_pc.png -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/episode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/episode.html -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/icon.png -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/index.css -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/manifest.json -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/original.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/original.json -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/title.png -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/today.svg -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/tv_calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/tv_calendar.html -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/tv_calendar.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/updated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/updated.svg -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/vant.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/vant.min.js -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/vue@3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/frontend/vue@3.js -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/logo.jpg -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/manifest.json -------------------------------------------------------------------------------- /MR-Plugins/tv_calendar/tv_calendar_Alano/tv_calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/tv_calendar/tv_calendar_Alano/tv_calendar.py -------------------------------------------------------------------------------- /MR-Plugins/豆瓣资源下载大师/豆瓣资源下载大师.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/MR-Plugins/豆瓣资源下载大师/豆瓣资源下载大师.js -------------------------------------------------------------------------------- /NH-Plugins/daily_news/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/daily_news/README.md -------------------------------------------------------------------------------- /NH-Plugins/daily_news/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/daily_news/__init__.py -------------------------------------------------------------------------------- /NH-Plugins/daily_news/bg/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/daily_news/bg/cloud.png -------------------------------------------------------------------------------- /NH-Plugins/daily_news/bg/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/daily_news/bg/dust.png -------------------------------------------------------------------------------- /NH-Plugins/daily_news/bg/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/daily_news/bg/fog.png -------------------------------------------------------------------------------- /NH-Plugins/daily_news/bg/haze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/daily_news/bg/haze.png -------------------------------------------------------------------------------- /NH-Plugins/daily_news/bg/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/daily_news/bg/rain.png -------------------------------------------------------------------------------- /NH-Plugins/daily_news/bg/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/daily_news/bg/snow.png -------------------------------------------------------------------------------- /NH-Plugins/daily_news/bg/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/daily_news/bg/sunny.png -------------------------------------------------------------------------------- /NH-Plugins/daily_news/daily_news.cpython-312-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/daily_news/daily_news.cpython-312-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /NH-Plugins/daily_news/font/ALIBABA_Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/daily_news/font/ALIBABA_Bold.otf -------------------------------------------------------------------------------- /NH-Plugins/daily_news/font/ALIBABA_Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/daily_news/font/ALIBABA_Regular.otf -------------------------------------------------------------------------------- /NH-Plugins/daily_news/font/qweather-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/daily_news/font/qweather-icons.ttf -------------------------------------------------------------------------------- /NH-Plugins/daily_news/font/syht.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/daily_news/font/syht.otf -------------------------------------------------------------------------------- /NH-Plugins/daily_news/font/zh.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/daily_news/font/zh.ttf -------------------------------------------------------------------------------- /NH-Plugins/daily_news/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/daily_news/logo.jpg -------------------------------------------------------------------------------- /NH-Plugins/daily_news/logo_thum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/daily_news/logo_thum.jpg -------------------------------------------------------------------------------- /NH-Plugins/daily_news/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/daily_news/manifest.json -------------------------------------------------------------------------------- /NH-Plugins/daily_news/requirements.txt: -------------------------------------------------------------------------------- 1 | zhdate 2 | bs4 3 | cryptography -------------------------------------------------------------------------------- /NH-Plugins/daily_news/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/daily_news/router.py -------------------------------------------------------------------------------- /NH-Plugins/daily_news/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/daily_news/weather.png -------------------------------------------------------------------------------- /NH-Plugins/iptv_monitor/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/iptv_monitor/README.MD -------------------------------------------------------------------------------- /NH-Plugins/iptv_monitor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/iptv_monitor/__init__.py -------------------------------------------------------------------------------- /NH-Plugins/iptv_monitor/get_epg_info.cpython-312-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/iptv_monitor/get_epg_info.cpython-312-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /NH-Plugins/iptv_monitor/iptv.cpython-312-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/iptv_monitor/iptv.cpython-312-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /NH-Plugins/iptv_monitor/iptv/epg_info_new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/iptv_monitor/iptv/epg_info_new.json -------------------------------------------------------------------------------- /NH-Plugins/iptv_monitor/iptv/iptv-png.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/iptv_monitor/iptv/iptv-png.m3u -------------------------------------------------------------------------------- /NH-Plugins/iptv_monitor/iptv/iptv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/iptv_monitor/iptv/iptv.json -------------------------------------------------------------------------------- /NH-Plugins/iptv_monitor/iptv/iptv.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/iptv_monitor/iptv/iptv.m3u -------------------------------------------------------------------------------- /NH-Plugins/iptv_monitor/iptv/merged.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/iptv_monitor/iptv/merged.json -------------------------------------------------------------------------------- /NH-Plugins/iptv_monitor/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/iptv_monitor/logo.jpg -------------------------------------------------------------------------------- /NH-Plugins/iptv_monitor/logo_thum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/iptv_monitor/logo_thum.png -------------------------------------------------------------------------------- /NH-Plugins/iptv_monitor/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/iptv_monitor/manifest.json -------------------------------------------------------------------------------- /NH-Plugins/iptv_monitor/merged.cpython-312-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/iptv_monitor/merged.cpython-312-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /NH-Plugins/iptv_monitor/requirements.txt: -------------------------------------------------------------------------------- 1 | lxml -------------------------------------------------------------------------------- /NH-Plugins/iptv_monitor/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/iptv_monitor/router.py -------------------------------------------------------------------------------- /NH-Plugins/truenas_notify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/truenas_notify/__init__.py -------------------------------------------------------------------------------- /NH-Plugins/truenas_notify/cover/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/truenas_notify/cover/default.png -------------------------------------------------------------------------------- /NH-Plugins/truenas_notify/cover/ntp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/truenas_notify/cover/ntp.png -------------------------------------------------------------------------------- /NH-Plugins/truenas_notify/cover/rsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/truenas_notify/cover/rsync.png -------------------------------------------------------------------------------- /NH-Plugins/truenas_notify/cover/scrub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/truenas_notify/cover/scrub.png -------------------------------------------------------------------------------- /NH-Plugins/truenas_notify/cover/smart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/truenas_notify/cover/smart.png -------------------------------------------------------------------------------- /NH-Plugins/truenas_notify/cover/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/truenas_notify/cover/space.png -------------------------------------------------------------------------------- /NH-Plugins/truenas_notify/cover/sys_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/truenas_notify/cover/sys_update.png -------------------------------------------------------------------------------- /NH-Plugins/truenas_notify/cover/truenas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/truenas_notify/cover/truenas.png -------------------------------------------------------------------------------- /NH-Plugins/truenas_notify/cover/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/truenas_notify/cover/update.png -------------------------------------------------------------------------------- /NH-Plugins/truenas_notify/cover/ups_battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/truenas_notify/cover/ups_battery.png -------------------------------------------------------------------------------- /NH-Plugins/truenas_notify/cover/ups_lost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/truenas_notify/cover/ups_lost.png -------------------------------------------------------------------------------- /NH-Plugins/truenas_notify/cover/ups_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/truenas_notify/cover/ups_on.png -------------------------------------------------------------------------------- /NH-Plugins/truenas_notify/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/truenas_notify/logo.jpg -------------------------------------------------------------------------------- /NH-Plugins/truenas_notify/logo_thum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/truenas_notify/logo_thum.png -------------------------------------------------------------------------------- /NH-Plugins/truenas_notify/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/truenas_notify/manifest.json -------------------------------------------------------------------------------- /NH-Plugins/truenas_notify/requirements.txt: -------------------------------------------------------------------------------- 1 | websocket-client -------------------------------------------------------------------------------- /NH-Plugins/truenas_notify/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/truenas_notify/router.py -------------------------------------------------------------------------------- /NH-Plugins/truenas_notify/truenas_notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/truenas_notify/truenas_notify.py -------------------------------------------------------------------------------- /NH-Plugins/wx-nullbr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NH-Plugins/wx-nullbr/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NH-Plugins/wx-nullbr/api/nullbr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/wx-nullbr/api/nullbr.py -------------------------------------------------------------------------------- /NH-Plugins/wx-nullbr/api/tmdbapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/wx-nullbr/api/tmdbapi.py -------------------------------------------------------------------------------- /NH-Plugins/wx-nullbr/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/wx-nullbr/app.py -------------------------------------------------------------------------------- /NH-Plugins/wx-nullbr/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/wx-nullbr/manifest.json -------------------------------------------------------------------------------- /NH-Plugins/wx-nullbr/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/NH-Plugins/wx-nullbr/utils.py -------------------------------------------------------------------------------- /Plex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/Plex/README.md -------------------------------------------------------------------------------- /Plex/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/Plex/config.yml -------------------------------------------------------------------------------- /Plex/pic/guide-tautulli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/Plex/pic/guide-tautulli.png -------------------------------------------------------------------------------- /Plex/pic/guide-wecom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/Plex/pic/guide-wecom.png -------------------------------------------------------------------------------- /Plex/pic/plex_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/Plex/pic/plex_default.png -------------------------------------------------------------------------------- /Plex/pic/plex_music_defeat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/Plex/pic/plex_music_defeat.jpg -------------------------------------------------------------------------------- /Plex/pic/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/Plex/pic/preview.png -------------------------------------------------------------------------------- /Plex/pic/update_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/Plex/pic/update_bg.gif -------------------------------------------------------------------------------- /Plex/pic/图片说明: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Plex/wxapp_notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/Plex/wxapp_notify.py -------------------------------------------------------------------------------- /Plex/wxapp_notify.py.backup.no.proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/Plex/wxapp_notify.py.backup.no.proxy -------------------------------------------------------------------------------- /Plex/wxapp_notify_backup_20220929.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/Plex/wxapp_notify_backup_20220929.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/README.md -------------------------------------------------------------------------------- /TrueNas_notify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/TrueNas_notify/README.md -------------------------------------------------------------------------------- /TrueNas_notify/img/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/TrueNas_notify/img/default.png -------------------------------------------------------------------------------- /TrueNas_notify/img/ntp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/TrueNas_notify/img/ntp.png -------------------------------------------------------------------------------- /TrueNas_notify/img/scrub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/TrueNas_notify/img/scrub.png -------------------------------------------------------------------------------- /TrueNas_notify/img/smart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/TrueNas_notify/img/smart.png -------------------------------------------------------------------------------- /TrueNas_notify/img/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/TrueNas_notify/img/space.png -------------------------------------------------------------------------------- /TrueNas_notify/img/truenas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/TrueNas_notify/img/truenas.png -------------------------------------------------------------------------------- /TrueNas_notify/img/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/TrueNas_notify/img/update.png -------------------------------------------------------------------------------- /TrueNas_notify/img/ups_battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/TrueNas_notify/img/ups_battery.png -------------------------------------------------------------------------------- /TrueNas_notify/img/ups_lost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/TrueNas_notify/img/ups_lost.png -------------------------------------------------------------------------------- /TrueNas_notify/img/ups_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/TrueNas_notify/img/ups_on.png -------------------------------------------------------------------------------- /TrueNas_notify/truenas_notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/TrueNas_notify/truenas_notify.py -------------------------------------------------------------------------------- /TrueNas_notify/truenas_notify_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/TrueNas_notify/truenas_notify_logo.jpg -------------------------------------------------------------------------------- /iCloudPD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/iCloudPD/README.md -------------------------------------------------------------------------------- /iCloudPD/media_id_images/media_id_delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/iCloudPD/media_id_images/media_id_delete.gif -------------------------------------------------------------------------------- /iCloudPD/media_id_images/media_id_download.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/iCloudPD/media_id_images/media_id_download.gif -------------------------------------------------------------------------------- /iCloudPD/media_id_images/media_id_expiration_warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/iCloudPD/media_id_images/media_id_expiration_warning.gif -------------------------------------------------------------------------------- /iCloudPD/media_id_images/media_id_startup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/iCloudPD/media_id_images/media_id_startup.gif -------------------------------------------------------------------------------- /iCloudPD/media_id_images/头像镂空/media_id_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/iCloudPD/media_id_images/头像镂空/media_id_delete.png -------------------------------------------------------------------------------- /iCloudPD/media_id_images/头像镂空/media_id_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/iCloudPD/media_id_images/头像镂空/media_id_download.png -------------------------------------------------------------------------------- /iCloudPD/media_id_images/头像镂空/media_id_expiration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/iCloudPD/media_id_images/头像镂空/media_id_expiration.png -------------------------------------------------------------------------------- /iCloudPD/media_id_images/头像镂空/media_id_startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/iCloudPD/media_id_images/头像镂空/media_id_startup.png -------------------------------------------------------------------------------- /iCloudPD/media_id_images/头像镂空/media_id_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/iCloudPD/media_id_images/头像镂空/media_id_warning.png -------------------------------------------------------------------------------- /iCloudPD/media_id_images/推送图片: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /qinglong/115Master/115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/qinglong/115Master/115.png -------------------------------------------------------------------------------- /qinglong/115Master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/qinglong/115Master/README.md -------------------------------------------------------------------------------- /qinglong/115Master/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qinglong/115Master/add_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/qinglong/115Master/add_env.py -------------------------------------------------------------------------------- /qinglong/115Master/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/qinglong/115Master/component.py -------------------------------------------------------------------------------- /qinglong/115Master/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/qinglong/115Master/config.py -------------------------------------------------------------------------------- /qinglong/115Master/cookies/pull.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qinglong/115Master/cookies/push.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qinglong/115Master/crack_captcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/qinglong/115Master/crack_captcha.py -------------------------------------------------------------------------------- /qinglong/115Master/del.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/qinglong/115Master/del.py -------------------------------------------------------------------------------- /qinglong/115Master/get_new_cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/qinglong/115Master/get_new_cookie.py -------------------------------------------------------------------------------- /qinglong/115Master/life_list_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/qinglong/115Master/life_list_monitor.py -------------------------------------------------------------------------------- /qinglong/115Master/notify_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/qinglong/115Master/notify_server.py -------------------------------------------------------------------------------- /qinglong/115Master/pull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/qinglong/115Master/pull.py -------------------------------------------------------------------------------- /qinglong/115Master/pull_after.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/qinglong/115Master/pull_after.py -------------------------------------------------------------------------------- /qinglong/115Master/push_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/qinglong/115Master/push_server.py -------------------------------------------------------------------------------- /qinglong/115Master/qinglong_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/qinglong/115Master/qinglong_api.py -------------------------------------------------------------------------------- /qinglong/115Master/qrcode_cookie_115_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/qinglong/115Master/qrcode_cookie_115_web.py -------------------------------------------------------------------------------- /qinglong/115Master/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/qinglong/115Master/requirements.txt -------------------------------------------------------------------------------- /qinglong/115Master/sign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/qinglong/115Master/sign.py -------------------------------------------------------------------------------- /qinglong/115Master/util/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # encoding: utf-8 3 | 4 | from .predicate import * 5 | -------------------------------------------------------------------------------- /qinglong/115Master/util/predicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alano-i/Plugins/HEAD/qinglong/115Master/util/predicate.py --------------------------------------------------------------------------------