-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
85 lines (80 loc) · 2.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Extractify</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<h1 id="loading">Extractify</h1>
</header>
<div class="container">
<!-- Scope Section -->
<div class="scope-container">
<input type="checkbox" id="scope-checkbox" />
<label for="scope-checkbox">
<div class="custom-checkbox"></div>
Same Domain
</label>
</div>
<!-- Endpoints Section -->
<div class="list-container">
<div class="parent-container">
<p class="list-title">Endpoints</p>
<button id="copy-endpoints-btn" class="copy-btn-all">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-copy"
>
<rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect>
<path
d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"
></path>
</svg>
</button>
</div>
<ul id="endpoint-list" class="list">
<li class="empty">No Endpoints found for this page.</li>
</ul>
</div>
<!-- URLs Section -->
<div class="list-container">
<div class="parent-container">
<p class="list-title">URLs</p>
<button id="copy-urls-btn" class="copy-btn-all">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-copy"
>
<rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect>
<path
d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"
></path>
</svg>
</button>
</div>
<ul id="url-list" class="list">
<li class="empty">No URLs found for this page.</li>
</ul>
</div>
</div>
<footer>
<p>Extractify © 2024</p>
</footer>
<script type="module" src="popup.js"></script>
</body>
</html>