-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpopup.html
More file actions
51 lines (42 loc) · 1.84 KB
/
popup.html
File metadata and controls
51 lines (42 loc) · 1.84 KB
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
<!--
-- DownloadLib popup interface
-- @license MIT
-- @author ivanvit
-- @version 1.0.0
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/ui.css">
</head>
<body>
<div id="container">
<img id="siteLogo" src="icons/logo1.png" alt="Icon" style="display:block; margin: 0 auto 6px auto;">
<div id="logoInfo" style="text-align:center; color:#bdbdbd; font-size:12px; white-space:pre-wrap; margin-bottom:8px;"></div>
<div id="bookContainer" style="overflow:hidden; margin-bottom:10px;">
<img id="cover" src="" alt="cover" style="display:none; float:left; width:80px; height:auto; margin-right:10px;">
<div id="description" style="color:#ddd; font-size:13px; line-height:1.3; min-height:48px;"></div>
</div>
<button id="downloadBtn">Скачать книгу</button>
<div id="status"></div>
<progress id="progress" value="0" max="100" style="display:none;"></progress>
<script src="lib/jszip.min.js"></script>
<script src="lib/html2pdf.min.js"></script>
<!-- Browser API adapter -->
<script src="core/BrowserApi.js"></script>
<!-- Core -->
<script src="core/EventBus.js"></script>
<script src="core/RateLimiter.js"></script>
<script src="core/DownloadManager.js"></script>
<script src="core/MangaPatcher.js"></script>
<!-- Services -->
<script src="services/ServiceRegistry.js"></script>
<!-- Exporters -->
<script src="exporters/ExporterRegistry.js"></script>
<!-- UI -->
<script src="ui/PopupController.js"></script>
<script type="module" src="app.js"></script>
</div>
</body>
</html>