-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
77 lines (70 loc) · 2.89 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet" />
<title>Popup</title>
<style>
::-webkit-scrollbar {
width: 5px;
}
::-webkit-scrollbar-thumb {
background: #ccc;
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: #bbb;
}
</style>
</head>
<body class="text-sm text-gray-700">
<div class="divide-y" style="min-width: 300px">
<div class="flex items-center justify-center gap-3 py-2">
<img src="./icons/icon32.png" alt="logo" class="w-6 h-6" />
<p class="text-medium text-center whitespace-nowrap font-medium">X.com Block Keywords</p>
</div>
<div class="flex justify-center items-center flex-col py-2 px-4 gap-1">
<h1 id="blockedCount" class="text-3xl font-semibold">0</h1>
<p class="text-sm">Tweet Blocked</p>
</div>
<div class="p-2 px-4">
<p class="uppercase text-gray-400">Configuration</p>
<div class="flex items-center gap-2 mt-2">
<input id="isActive" type="checkbox" class="w-4 h-4 text-blue-600 bg-gray-100 border-gray-300 rounded-lg" />
<label for="isActive" class="ms-2 text-sm font-medium text-gray-900">Extension Active</label>
</div>
</div>
<div id="childConfig" class="divide-y">
<div class="flex flex-col gap-2 p-2 px-4">
<div class="flex items-center gap-2">
<input
id="isBlockAd"
type="checkbox"
class="w-4 h-4 text-blue-600 bg-gray-100 border-gray-300 rounded-lg"
/>
<label for="isBlockAd" class="ms-2 text-sm font-medium text-gray-900">Block Ads</label>
</div>
<div class="flex items-center gap-2">
<input id="verbose" type="checkbox" class="w-4 h-4 text-blue-600 bg-gray-100 border-gray-300 rounded-lg" />
<label for="verbose" class="ms-2 text-sm font-medium text-gray-900">Verbose (will show browser log)</label>
</div>
</div>
<div class="form-group flex flex-col">
<p class="uppercase text-gray-400 p-4 py-2">Blocked Keywords</p>
<div id="keywordContainer" class="flex flex-col gap-2 bg-gray-100 p-2 h-36 overflow-y-auto"></div>
<form id="newKeywordForm" class="flex gap-2 justify-between p-4">
<input
type="text"
class="p-2 border border-2 outline-none rounded-lg w-full"
name="keyword"
placeholder="New Blocked Keyword"
/>
<button type="submit" class="bg-blue-400 p-1 px-2 rounded-lg text-white w-fit">Add</button>
</form>
</div>
</div>
</div>
<script src="./popup.js"></script>
</body>
</html>