Skip to content

Commit efbb139

Browse files
committed
新增 [话本小说网]、[读书族小说网] 支持
1 parent 9f0e50d commit efbb139

1 file changed

Lines changed: 48 additions & 11 deletions

File tree

Autopage.user.js

Lines changed: 48 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// ==UserScript==
22
// @name 自动无缝翻页
3-
// @version 4.6.3
3+
// @version 4.6.4
44
// @author X.I.U
55
// @description 无缝拼接下一页内容(瀑布流),目前支持:[所有「Discuz!、Flarum、phpBB、Xiuno、XenForo、NexusPHP、DUX/XIU/D8/Begin(WP主题)」网站]、百度、谷歌、必应、搜狗、头条搜索、360 搜索、微信搜索、贴吧、豆瓣、知乎、微博、NGA、V2EX、B 站(Bilibili)、Pixiv、煎蛋网、糗事百科、龙的天空、起点中文、IT之家、千图网、Pixabay、3DM、游侠网、游民星空、NexusMods、Steam 创意工坊、CS.RIN.RU、片库、茶杯狐、NO视频、低端影视、奈菲影视、音范丝、BT之家、萌番组、动漫花园、樱花动漫、爱恋动漫、AGE 动漫、Nyaa、SrkBT、RARBG、SubHD、423Down、不死鸟、扩展迷、极简插件、小众软件、动漫狂、漫画猫、漫画 DB、动漫之家、拷贝漫画、包子漫画、Mangabz、PubMed、GreasyFork、Github、StackOverflow(以上仅一小部分,更多的写不下了...
66
// @match *://*/*
@@ -3657,19 +3657,19 @@ function: {
36573657
scrollD: 1500
36583658
}
36593659
}, // 搜小说
3660-
_530p: {
3661-
host: 'www.530p.com',
3662-
functionS: function() {if (indexOF(/\/\d{4,}\.htm/)) {curSite = DBSite._530p;}},
3660+
ihuaben: {
3661+
host: 'www.ihuaben.com',
3662+
functionS: function() {if (indexOF(/\/\d{4,}\.html/)) {curSite = DBSite.ihuaben;}},
3663+
insStyle: '.discription > p > i, img, #container, #BDBannerBottom_PC, iframe, .navFooter {display: none !important;} .discription > p {font-size: 16px; min-height: 24px; padding-bottom: 24px;}',
36633664
pager: {
36643665
type: 1,
3665-
nextL: 'css;#nextLink',
3666-
pageE: 'css;#cp_content',
3667-
insertP: ['css;#cp_content', 6],
3668-
insertP6Br: true,
3669-
replaceE: 'css;#pg_bar',
3670-
scrollD: 1500
3666+
nextL: 'id("preAndNextBar")/a[contains(text(), "下一章")]',
3667+
pageE: 'css;#contentsource > p',
3668+
insertP: ['css;.discription', 3],
3669+
replaceE: 'css;#preAndNextBar',
3670+
scrollD: 1000
36713671
}
3672-
}, // 无弹窗小说网
3672+
}, // 话本小说网
36733673
xineyby: {
36743674
host: 'www.xineyby.com',
36753675
functionS: function() {if (indexOF('/read/')) {
@@ -3697,6 +3697,36 @@ function: {
36973697
scrollD: 900
36983698
}
36993699
}, // 无错小说网 - 分类/搜索页
3700+
_530p: {
3701+
host: 'www.530p.com',
3702+
functionS: function() {if (indexOF(/\/\d{4,}\.htm/)) {curSite = DBSite._530p;}},
3703+
pager: {
3704+
type: 1,
3705+
nextL: 'css;#nextLink',
3706+
pageE: 'css;#cp_content',
3707+
insertP: ['css;#cp_content', 6],
3708+
insertP6Br: true,
3709+
replaceE: 'css;#pg_bar',
3710+
scrollD: 1500
3711+
}
3712+
}, // 无弹窗小说网
3713+
xiaoshuo77: {
3714+
host: 'm.xiaoshuo77.net',
3715+
functionS: function() {if (indexOF('.html')) {curSite = DBSite.xiaoshuo77; xs_bF(getAllCSS('#novelcontent'), [/(<br>)?(&nbsp;)+.*$|.*$/, '<br>']);}},
3716+
insStyle: '#novelcontent > p, img {display: none !important;}',
3717+
pager: {
3718+
type: 1,
3719+
nextL: 'css;.page_chapter a.p4',
3720+
pageE: 'css;#novelcontent',
3721+
insertP: ['css;#novelcontent', 6],
3722+
replaceE: 'css;.page_chapter',
3723+
scrollD: 1500
3724+
},
3725+
function: {
3726+
bF: xs_bF,
3727+
pF: [/(<br>)?(&nbsp;)+.*$|.*$/, '<br>']
3728+
}
3729+
}, // 读书族小说网
37003730
linovel: {
37013731
host: 'www.linovel.net',
37023732
functionS: function() {if (indexOF(/\/book\/\d+\/.+\.html/)) {
@@ -7246,6 +7276,13 @@ function: {
72467276
});
72477277
return pageElems
72487278
}
7279+
// 文字型插入前函数(正则过滤)
7280+
function xs_bF(pageElems, reg) {
7281+
pageElems.forEach(function (one) {
7282+
one.innerHTML = one.innerHTML.replace(reg[0], reg[1])
7283+
});
7284+
return pageElems
7285+
}
72497286
// 通用型获取下一页地址(URL 替换 page= 参数)
72507287
function getNextP(css, pf, reg) {
72517288
let nextNum = getOne(css);

0 commit comments

Comments
 (0)