-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
55 lines (47 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<title>SwiftWipe</title>
<link rel="stylesheet" href="css/all.min.css">
<style>
#swiftBody {
width: 250px !important;
text-align: center;
border-radius: 10px;
vertical-align: top;
}
#descriptionText {
font-style: italic;
}
#extensionTitle {
font-size: 20px;
font-weight: bold;
}
#clearData{
height: 40px;
padding-left: 20px;
padding-right: 20px;
font-size: 16px;
border-radius: 5px;
border: none;
background-color: cornflowerblue;
color: white;
font-weight: 600;
}
#clearData:hover{
background-color: crimson;
}
</style>
</head>
<body>
<div id="swiftBody">
<img src="./images/icon48.png" alt="logo">
<p><span id="extensionTitle">Swift Wipe <span id="extensionVersion"></span> (<a href="https://github.com/cloudsteak/SwiftWipe" target="_blank"><i class="fa-solid fa-circle-question"></i></a>)</p>
<button id="clearData"><i class="fa-solid fa-trash"></i> <span data-i18n="clearDataButton"></span></button>
<script src="popup.js"></script>
<p>
<label id="descriptionText" data-i18n="extensionDescription"></label>
</p>
</div>
</body>
</html>