forked from dodying/UserJs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSidebarInContent.user.js
70 lines (70 loc) · 2.58 KB
/
SidebarInContent.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// ==UserScript==
// @name SidebarInContent
// @name:zh-CN 【小说】目录页侧边分卷导航栏
// @author dodying
// @namespace https://github.com/dodying/Dodying-UserJs
// @supportURL https://github.com/dodying/Dodying-UserJs/issues
// @icon http://cdn4.iconfinder.com/data/icons/mood-smiles/80/mood-29-48.png
// @description:zh-CN
// @include http://read.qidian.com/BookReader/*.aspx*
// @include http://b.faloo.com/f/*.html*
// @include http://chuangshi.qq.com/bk/*/*-l.html*
// @include http://book.zongheng.com/showchapter/*.html*
// @include http://www.17k.com/list/*.html*
// @version 1
// @grant none
// @run-at document-idle
// ==/UserScript==
var Lib = {
'read.qidian.com': {
'BookNameSele': 'div.booktitle>h1',
'BookSubSele': 'div#content>div.box_title>div.title>b',
'OtherStyle': 'background-color:#E7F4FE;color:#004e00;'
},
'b.faloo.com': {
'BookNameSele': 'h1.a_24b',
'BookSubSele': 'div.ni_list>table>tbody>tr:nth-child(1)>td:nth-child(1)>h1',
'OtherStyle': ''
},
'chuangshi.qq.com': {
'BookNameSele': 'i.grey+a>b',
'BookSubSele': 'h1.juan_height',
'OtherStyle': ''
},
'book.zongheng.com': {
'BookNameSele': 'h1',
'BookSubSele': 'h5.chap_li',
'OtherStyle': ''
},
'www.17k.com': {
'BookNameSele': 'h1',
'BookSubSele': 'span.tit',
'OtherStyle': ''
}
}
var Host = window.location.host;
if (Host in Lib) {
var BookNameSele = Lib[Host].BookNameSele;
var BookSubSele = Lib[Host].BookSubSele;
var OtherStyle = Lib[Host].OtherStyle;
var BookName = document.querySelector(BookNameSele).innerText;
var TopBar = document.createElement('div');
TopBar.style = 'z-index:999999;top:0px;position:absolute;width:24px;word-break:keep-all;overflow-y:hidden;font-weight:bold;' + OtherStyle;
TopBar.onmouseover = function () {
this.style.overflowY = 'visible';
}
TopBar.onmouseout = function () {
this.style.overflowY = 'hidden';
}
var anchor = document.querySelectorAll(BookSubSele);
//console.log(anchor)
for (var i = 0; i < anchor.length; i++) {
var name = anchor[i].innerText.replace(BookName, '').replace(/\s+/g, '').replace('[订阅VIP章节成为起点VIP会员]', '').replace('[分卷阅读]', '').replace('[我要充值]', '');
anchor[i].innerHTML = '<a name="' + i + '">' + anchor[i].innerHTML + '</a>';
TopBar.innerHTML += '<a href="#' + i + '">' + name + '</a><HR width="80%" color=black SIZE=1>';
}
document.body.appendChild(TopBar);
window.onscroll = function () {
TopBar.style.top = document.documentElement.scrollTop + 'px';
}
}