-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
26 lines (26 loc) · 968 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AdBlock Filter Generator</title>
<link rel="stylesheet" href="popup.css">
<!-- Add Font Awesome CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css" />
</head>
<body>
<div class="container">
<h1>AdBlock Filter Generator</h1>
<p id="instruction">Select a blocklist below or upload your own to generate a filter:</p>
<ul id="blocklist-container">
<!-- Blocklists will be added here by the script -->
</ul>
<div class="file-section">
<input type="file" id="file-input" multiple>
<label for="file-input" class="file-input-label" id="file-selected-label">
</div>
<button id="generate-filter">Generate Filter</button>
</div>
<script src="popup.js"></script>
</body>
</html>