-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
50 lines (50 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebAvenger</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
width: 300px;
}
h1 {
text-align: center;
margin-bottom: 20px;
}
p {
text-align: center;
margin-bottom: 20px;
}
#editListBtn, #addBtn {
display: block;
margin: 0 auto;
margin-bottom: 20px;
}
#blockedWebsites {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 10px;
}
#blockedWebsites label {
white-space: nowrap;
}
#addWebsiteInput {
display: none;
margin-bottom: 10px;
}
</style>
</head>
<body>
<h1>Welcome to WebAvenger</h1>
<p>This extension blocks common data fetching websites to enhance your browsing privacy.</p>
<p>You can manage the extension settings from the browser toolbar.</p>
<button id="editListBtn">Edit List</button>
<button id="addBtn">Add</button>
<div id="blockedWebsites"></div>
<input type="text" id="addWebsiteInput" placeholder="Enter website URL">
<script src="popup.js"></script>
</body>
</html>