forked from Xwilarg/NHentaiDownloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
49 lines (49 loc) · 1.7 KB
/
options.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
<!DOCTYPE html>
<html>
<body>
<h3>Global behaviour</h3>
Download format:
<select id="useZip">
<option value="zip">ZIP</option>
<option value="cbz">CBZ</option>
<option value="raw">Raw (not recommanded)</option>
</select>
<br/>
Display checkboxs on NHentai:
<input id="displayCheckbox" type="checkbox"/>
<br/>
Dark mode:
<input id="darkMode" type="checkbox"/>
<br/><hr/>
<h3>Multiple download</h3>
Behaviour on duplicate:
<select id="duplicateBehaviour">
<option value="rename">Rename</option>
<option value="ignore">Ignore</option>
</select>
<br/>
Download each file separately:
<input id="downloadSeparately" type="checkbox"/>
<br/><hr/>
<h3>Advanced behaviour</h3>
Use HTML to get API info:
<input id="htmlParsing" type="checkbox"/>
<br/><small>It is recommanded to use this if NHentai API is down</small>
<br/><hr/>
<h3>Name template</h3>
<input id="downloadName" type="text"/>
<br/><br/>
<b>Template explanations:</b><br/>
<b>{pretty}:</b> Pretty title<br/>
<b>{japanese}:</b> Japanese title<br/>
<b>{english}:</b> English title<br/>
<b>{id}:</b> 6 digits ID<br/>
<b>{group}:</b> Group who made the doujin<br/>
<b>{artist}:</b> Artist of the doujin<br/>
<b>{character}:</b> Characters present<br/>
<b>{language}:</b> Language<br/>
Replace spaces by underscores:
<input id="replaceSpaces" type="checkbox"/>
</body>
<script src="js/options.js"></script>
</html>