-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
59 lines (45 loc) · 1.49 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Extension</title>
<link rel="stylesheet" href="popup.css">
<link href="https://fonts.googleapis.com/css2?family=Merriweather&display=swap" rel="stylesheet" type="text/css">
</head>
<body>
<div class="modal-header">
<h1 class="logo">
<img class="logo-img" src="./images/icon-128.png">
<span class="current-text">Save Image</span>
</h1>
<div class="modal-descrp">
<p>Images on this web site</p>
</div>
</div>
<div class="modal-icons">
<div class="flex-container">
<!-- <div class="flex-box">-->
<!-- <a href="https://github.com/michaelkorchagin" target="_blank">-->
<!-- <img src="images/git.png">-->
<!-- <i class="git">Link to GIT</i>-->
<!-- </a>-->
<!-- </div>-->
<!-- <div class="flex-box">-->
<!-- <a href="#" target="_blank">-->
<!-- <img src="images/atm.png">-->
<!-- <i class="visit-card-site">Visit-card site for organization</i>-->
<!-- </a>-->
<!-- </div>-->
<!-- <div class="flex-box">-->
<!-- <button id="button-to-open-saver">-->
<!-- <img src="images/save.png">-->
<!-- <i class="save-text">Save image from your site</i>-->
<!-- </button>-->
<!-- </div>-->
<div id="preview-images">
</div>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>