-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbatoto_direct_links.user.js
176 lines (136 loc) · 5.09 KB
/
batoto_direct_links.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
// ==UserScript==
// @name Batoto Direct Links
// @namespace https://github.com/ToostInc/userscripts
// @description Adds Direct Links to the online reader
// @include http://www.batoto.net/read/_/*
// @include http://www.bato.to/read/_/*
// @include https://bato.to/read/_/*
// @author Joost Bremmer < toost dot b at gmail dot com >
// @copyright 2014, Joost Bremmer
// @license MIT
// @version 2.1.3.1
// @date 17-07-2015
// @require http://code.jquery.com/jquery-latest.min.js
// @grant GM_addStyle
// @grant GM_xmlhttpRequest
// @downloadURL https://rawgit.com/ToostInc/userscripts/master/batoto-direct-links/batoto_direct_links.user.js
// @updateURL https://rawgit.com/ToostInc/userscripts/master/batoto-direct-links/batoto_direct_links.meta.js
// ==/UserScript==
// The MIT License
//
// Copyright (c) 2014 Joost Bremmer
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files
// (the "Software"), to deal in the Software without restriction,
// including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software, and
// to permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
$(document).ready (function () {
//Add various tabs
var dlinks = "<div id='dlinks' class='rounded dlinks'>\n" +
"\t<h3>Direct Links:</h3>\n" +
"\t<br />\n" +
"</div>";
var dlinksanchor = "<li style='display: inline-block; margin-right: 20px;'>\n" +
"\t<button type='button' id='dlinksanchor'>" +
"Direct Links" +
"</button>\n" +
"</li>";
//insert tabs
$("#read_settings").before(dlinks);
$("div.moderation_bar li:last-child").before(dlinksanchor);
//style tabs
GM_addStyle(".dlinks {" +
"background-color: #FFFFFF;" +
"padding-top: 10px;" +
"padding-bottom: 05px;" +
"display: none;" +
"text-align: center;" +
"border-top: 1px solid #CDCDCD;" +
"border-top-right-radius:0px;"+
"border-top-left-radius: 0px;" +
"border-bottom: 1px solid #CDCDCD;"+
"z-index: 999; position: absolute;" +
"width: 100%;"+
"left: 0px;"+
"}"
);
$("#comic_wrap").css("z-index","499")
//get image source
var imgsrc = $("img#comic_page").attr("src");
//get total amount of pages
var pages = $("select#page_select option:last").html();
var pages = pages.replace(/page./g, '');
//insert links into Direct Links div.
var dlmesg = '<p>\n' +
'\tUse "Right-click > Save As" dialogue,' +
'or a download manager like ' +
'<a href="http://www.downthemall.net/" id="dta">' +
'DownThemAll'+
'</a> ' +
'to save the images.\n' +
'<br /><br />' +
'</p>\n' +
'<a href="#" id="dlloading">' +
'\tLoading...'+
'\t<br />\n' +
'</a>';
$("#dlinks").append(dlmesg);
//event handler click on 'Direct Links' button.
$("#dlinksanchor").click( function() {
$("#dlinks").slideToggle("slow");
});
$("#page_select:first > option").each(function() {
var nextpage = $(this).attr("value");
//console.log(nextpage);
GM_xmlhttpRequest({
method: "GET",
url: nextpage,
onload: function(response) {
//console.log(response.responseText);
if ( response.responseText.indexOf('id="comic_page"') > 0 ) {
var raw = response.responseText;
var content = /<img.*comic_page.*>/.exec(raw)
//console.log(content);
var imglink = /"http.*(png|jpg)"/.exec(content);
//console.log(imglink[0]);
var pagenum = /\d*\.(png|jpg)/.exec(imglink[0]);
//console.log(pagenum[0]);
var newpageanchor= '<a href=' + imglink[0] + 'id="page' +
/\d*/.exec(pagenum[0]) + '">' +
"\n\tPage " + parseInt(/\d*/.exec(pagenum[0])) + "<br />" +
'</a>';
}
else {
imglink[0] = "image not found!";
var newpageanchor='<a href="#" class="404">Uh-oh.something went wrong</a>' +
'<br />';
}
$("#dlinks").append(newpageanchor);
//sort links
$('#dlinks a[id^="page"]').sort(function (a, b) {
var re = /[^\d]/g;
return ~~a.id.replace(re, '') > ~~b.id.replace(re, '');
})
.appendTo("#dlinks");
}
});
if ( $(this).is(":last-child") ) {
$("#dlloading").remove();
}
});
});