├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── coco-message.js ├── customizeVisitedLinkColor.js ├── download_to_qb.js ├── mteam_img_preview.js ├── mteam_img_preview_follow.js └── to_qb_script.js /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoxiongXu/M-Team-to-qBittorrent/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoxiongXu/M-Team-to-qBittorrent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoxiongXu/M-Team-to-qBittorrent/HEAD/README.md -------------------------------------------------------------------------------- /coco-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoxiongXu/M-Team-to-qBittorrent/HEAD/coco-message.js -------------------------------------------------------------------------------- /customizeVisitedLinkColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoxiongXu/M-Team-to-qBittorrent/HEAD/customizeVisitedLinkColor.js -------------------------------------------------------------------------------- /download_to_qb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoxiongXu/M-Team-to-qBittorrent/HEAD/download_to_qb.js -------------------------------------------------------------------------------- /mteam_img_preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoxiongXu/M-Team-to-qBittorrent/HEAD/mteam_img_preview.js -------------------------------------------------------------------------------- /mteam_img_preview_follow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoxiongXu/M-Team-to-qBittorrent/HEAD/mteam_img_preview_follow.js -------------------------------------------------------------------------------- /to_qb_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoxiongXu/M-Team-to-qBittorrent/HEAD/to_qb_script.js --------------------------------------------------------------------------------