-
Notifications
You must be signed in to change notification settings - Fork 0
/
bw-guide-backup.html
241 lines (223 loc) · 10.2 KB
/
bw-guide-backup.html
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<base href="https://neco2.github.io" target="_blank">
<link rel="apple-touch-icon" href="/assets/favicon.png">
<link rel="icon" type="image/png" href="/assets/favicon.png">
<link rel="shortcut icon" type="image/png" href="/assets/favicon.png">
<!-- <link rel="stylesheet" href="/assets/css/zCssMerge.css"> -->
<link rel="stylesheet" href="/assets/css/styles.css">
<link rel="stylesheet" href="/assets/css/wrapper.css">
<link rel="stylesheet" href="/assets/css/series.css">
<!-- <link rel="stylesheet" href="/assets/css/seriesPage.css"> -->
<link rel="stylesheet" href="/assets/css/links.css">
<style>
.spoiler {
color:#FFFFFF00;
background:black;
}
.spoiler:hover {
color:inherit;
background:black;
}
</style>
<script>
function zeroPad(number) {
let [integer, decimal] = number.split('.');
integer = integer.padStart(3, '0');
if (decimal) {
return `${integer}.${decimal}`;
}
return integer;
}
async function downloadURL(uri, short, chapter, dlLink) {
const ext = uri.match(/\.[^\.\/]+$/);
console.log(short)
if (!ext) {
return
}
var name = ""
try {
chapterMatch = chapter.match(/\d+(\.\d+)?/)
name = short + zeroPad(chapterMatch[0])
}
catch {
name = short + "_" + chapter
}
event.preventDefault();
console.log("Downloading " + uri + " as " + name)
const oldInnerHTML = dlLink.innerHTML;
dlLink.innerHTML = oldInnerHTML + " <span style='font-size:65%'>(Connecting)</span>";
const response = await fetch(uri);
const contentLength = response.headers.get('content-length');
const total = parseInt(contentLength, 10);
let loaded = 0;
const res = new Response(new ReadableStream({
async start(controller) {
const reader = response.body.getReader();
for (;;) {
const {done, value} = await reader.read();
if (done) break;
loaded += value.byteLength;
dlLink.innerHTML = oldInnerHTML + " <span style='font-size:65%'>(" + (loaded/1000000).toFixed(2) + "/" + (total/1000000).toFixed(2) +"mb)</span>";
controller.enqueue(value);
}
controller.close();
},
}));
const blob = await res.blob();
const href = window.URL.createObjectURL(blob);
const a = document.createElement("a");
a.download = name + ext;
a.target="_blank"
a.href = href;
a.click();
a.href = "";
dlLink.innerHTML = oldInnerHTML;
}
</script>
<title>Backup of the BookWalker Guide - neCo</title>
</head>
<!--
░█▀█░█▀▄░█▀█░█▀█░█▀▄░█▀█░█▀█░░░█▀█░█░░░█░░░░░█░█░█▀█░█▀█░█▀▀░░░░░░░█░█░█▀▀░░░█░█░█░█░█▀█░░░█▀▀░█▀█░▀█▀░█▀▀░█▀▄░░░█░█░█▀▀░█▀▄░█▀▀░
░█▀█░█▀▄░█▀█░█░█░█░█░█░█░█░█░░░█▀█░█░░░█░░░░░█▀█░█░█░█▀▀░█▀▀░░░░░░░░█░░█▀▀░░░█▄█░█▀█░█░█░░░█▀▀░█░█░░█░░█▀▀░█▀▄░░░█▀█░█▀▀░█▀▄░█▀▀░
░▀░▀░▀▀░░▀░▀░▀░▀░▀▀░░▀▀▀░▀░▀░░░▀░▀░▀▀▀░▀▀▀░░░▀░▀░▀▀▀░▀░░░▀▀▀░▄▀░░░░░▀░░▀▀▀░░░▀░▀░▀░▀░▀▀▀░░░▀▀▀░▀░▀░░▀░░▀▀▀░▀░▀░░░▀░▀░▀▀▀░▀░▀░▀▀▀░
-->
<body>
<div id="fakeBody">
<header id="header">
<div class="headerPos">
<nav>
<div class="headerImg">
<a target="_self" href="https://neco2.github.io" style="position: relative;">
<img src="assets/neco.svg" alt="" height=65px>
</a>
</div>
<a target="_self" href="https://neco2.github.io">
<div class="headerButton">
Home
</div>
</a>
<a target="_self" href="translations">
<div class="headerButton">
TLs
</div>
</a>
<!-- <a target="_self" href="chapters/">
<div class="headerButton">
Chapters
</div>
</a> -->
<a target="_self" href="blog/">
<div class="headerButton">
Blog
</div>
</a>
<a target="_self" href="resources/">
<div class="headerButton">
Resources
</div>
</a>
<!-- <input type="checkbox" id="colourSwitch" /> -->
</nav>
</div>
</header>
<div class="refreshBanner ver4 Aver2024-11-08-15-57">
<div>
If you are seeing this, please refresh the page without cache.<br>
(ctrl+shift+r usually)
</div>
</div>
<div id="contentContainer">
<style type="text/css" media="screen">
#contentContainer {
max-width: 850px !important;
font-size:17px;
margin: auto;
margin-bottom: 2em;
}
</style>
<style>
a {
background: none !important;
padding-left: 0px !important;
}
</style>
<br>
Below is a backup of the <a href="https://global.bookwalker.jp/info-purchase/" target="_self">https://global.bookwalker.jp/info-purchase/</a> page, because BookWalker has deleted their original page. The new guide can be found <a href="https://help.bookwalker.jp/faq/en/990" target="_self">here</a><br>
This backup was taken from the 2024-04-10 snapshot of the page from the <a href="https://web.archive.org/web/20240410050248/https://global.bookwalker.jp/info-purchase/" target="_self">Internet Archives' WaybackMachine</a>.
<br>
<br>
<hr>
<div style="font-size:17px;max-width:850px;margin:auto;">
<div class="content" id="purchaseBookWrap">
<h2 class="howtoPurchaseTitle"> How to Purchase Books on BOOKWALKER JP Store </h2>
<p class="howtoPurchaseread"> Please follow the below steps to purchase books on BOOK☆WALKER JP Store (<a href="//web.archive.org/web/20240410050248/https://bookwalker.jp/" target="_blank">bookwalker.jp</a>).<br>
<font color="#e40007" style="--darkreader-inline-color: #ff282f;" data-darkreader-inline-color="">*Please view <a href="//web.archive.org/web/20240410050248/https://help.bookwalker.jp/faq/en/206">FAQ</a> for distinguishing eBooks in English language from those in Japanese language.</font>
</p>
<p>
</p><h3 class="title">Video Tutorial</h3><p></p>
<p> How to purchase Japanese Books on BOOK☆WALKER</p>
<p class="thumb">
<iframe src="https://web.archive.org/web/20240410050248if_/https://www.youtube.com/embed/k3M_8jJ8YVs" frameborder="0" allowfullscreen="" data-ruffle-polyfilled=""></iframe>
</p>
[ (link added) <a href="https://web.archive.org/web/20240410050248if_/https://www.youtube.com/embed/k3M_8jJ8YVs" target="_self">https://web.archive.org/web/20240410050248if_/https://www.youtube.com/embed/k3M_8jJ8YVs</a> ]
<br>
<br>
<br>
<br>
<h3 class="title"> STEP1: Select a Book</h3>
<div class="purchaseflow">
<p> Select any book on JP Store, and add to your cart from the green ‘カート(Cart)’ button. </p>
<h4 class="capt"> [ STORE PAGE ] </h4>
<div class="capimg"> <img src="assets/resources/purchase_01.png" width="728" height="390" alt="" class="pcimg"> </div>
</div>
<h3 class="title"> STEP2: Sign-in BOOKWALKER or Create Account </h3>
<div class="purchaseflow">
<p> Sign-in with your BOOKWALKER account, or create a new account. </p>
<h4 class="capt"> [ SIGN-IN ] </h4>
<div class="capimg"> <img src="assets/resources/purchase_02.png" width="728" height="497" alt="" class="pcimg"> </div>
</div>
<h3 class="title"> STEP3: Add Item to Cart </h3>
<div class="purchaseflow">
<p> Select ‘カートに入れる(Add to Cart)’, then ‘レジに進む(Proceed to Checkout)’.. </p>
<h4 class="capt"> [ CONFIRMATION ] </h4>
<div class="capimg"> <img src="assets/resources/purchase_03.png" width="728" height="269" alt="" class="pcimg"> </div>
<h4 class="capt"> [ SHOPPING CART ] </h4>
<div class="capimg"> <img src="assets/resources/purchase_04.png" width="728" height="413" alt="" class="pcimg"></div>
</div>
<h3 class="title"> STEP4: Check Out </h3>
<div class="purchaseflow">
<p> Select transaction type (you may only select PayPal from outside Japan), then select “次へ進む (Proceed)” button. </p>
<h4 class="capt"> [ CHECK OUT ] </h4>
<div class="capimg"> <img src="assets/resources/purchase_05.png" width="728" height="945" alt="" class="pcimg"></div>
</div>
<h3 class="purchaseJP"> Purchase Complete! </h3>
<div class="purchaseflow">
<p> Please view <a href="//web.archive.org/web/20240410050248/https://help.bookwalker.jp/faq/en/206">FAQ</a> or <a href="/web/20240410050248/https://global.bookwalker.jp/info-inquiry/">contact Support</a> if you have any further questions. </p>
</div>
</div>
</div>
<br>
</div>
<noscript>
<div>
JavaScript is unfortunately required to download chapters with the correct file-names.
</div>
</noscript>
</div>
<footer id="footer">
<div class="footerContent">
<span style="font-size:18px;margin-left:50%;left:-137px;display:table;vertical-align:top;text-align:center;position:absolute;"> <a target="_self" href="support">HOW TO SUPPORT THE AUTHOR</a></span>
</div>
<span style="opacity:20%">
May your path lea<a class="nonStyled" target="_self" href="debug">d</a> you to the gardens of eternal spring.
<span style="font-size:8px;">2024-11-08 15:57</span>
</span>
<span style="float:right;opacity:20%">
<a target="_self" href="feeds">Feeds</a> - <a target="_self" href="contact">Contact</a>
</span>
</footer>
</body>
</html>