一个可扩展的通用型小说下载器。
不好意思,请当我前面的是废话,我刚发现这个章节名称是由作者自行设置的,没事了。
添加了自定义保存参数,具体内容参见脚本说明。
你可以F12打开Console,在Console中运行如下代码:
const saveOptions = {
getchapterName: (chapter) => {
if (chapter.chapterName) {
return `第${chapter.chapterNumber.toString()}章 ${chapter.chapterName}`;
} else {
return `第${chapter.chapterNumber.toString()}章`;
}
}
}
window.saveOptions = saveOptions
如果你想在某一站点总是运行该代码,可使用如下用户脚本进行自运注入:
// ==UserScript==
// @name auto inject saveOptions
// @namespace http://tampermonkey.net/
// @version 0.1
// @description auto inject saveOptions
// @author You
// @match *://*/*
// @grant unsafeWindow
// ==/UserScript==
(function() {
'use strict';
const saveOptions = {
getchapterName: (chapter) => {
if (chapter.chapterName) {
return `第${chapter.chapterNumber.toString()}章 ${chapter.chapterName}`;
} else {
return `第${chapter.chapterNumber.toString()}章`;
}
}
}
unsafeWindow.saveOptions = saveOptions
})();
自定义筛选函数同理也可自运注入。
请问关于废文网,它这个网站的小说章节本身标题只有一、二、三什么的,不是那种第一章、第二章的格式,我下载之后导入手机阅读软件识别不到章节。请问这个问题可以解决吗?