This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Jinjiang Chapter Downloader | |
// @name:zh-CN 晋江章节下载器 | |
// @namespace http://tampermonkey.net/ | |
// @version 0.6 | |
// @description Download chapter content from JinJiang (jjwxc.net) | |
// @description:zh-CN 从晋江下载章节文本 | |
// @author oovz | |
// @match *://www.jjwxc.net/onebook.php?novelid=*&chapterid=* | |
// @grant none |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Qidian Chapter Downloader | |
// @name:zh-CN 起点章节下载器 | |
// @namespace http://tampermonkey.net/ | |
// @version 0.7 | |
// @description Download chapter content from qidian | |
// @description:zh-CN 从起点下载章节文本 | |
// @author oovz | |
// @match https://www.qidian.com/chapter/* | |
// @grant none |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import qbittorrentapi | |
sites = { | |
"zhuque.in": { | |
"up": 6500000, # 6.5 MBps | |
"tag": "ZhuQue" | |
}, | |
} |