-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
38 lines (38 loc) · 1.22 KB
/
popup.html
File metadata and controls
38 lines (38 loc) · 1.22 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=360">
<link rel="stylesheet" href="popup.css">
<title>Exposed</title>
</head>
<body>
<div id="app">
<header>
<div id="header-top">
<button id="back-btn" class="back-btn hidden">←</button>
<h1>Exposed</h1>
</div>
<p id="subtitle" class="subtitle"></p>
<div id="scope-toggle" class="scope-toggle">
<button class="scope-btn active" data-scope="tab">This tab</button>
<button class="scope-btn" data-scope="all">All tabs</button>
<button class="scope-btn" data-scope="session">This session</button>
</div>
</header>
<main>
<div id="category-list"></div>
<div id="detail-view" class="hidden"></div>
<div id="empty-state" class="empty-state hidden">
<div class="empty-icon">✓</div>
<p class="empty-title">Looking clean</p>
<p class="empty-desc">No data sharing detected on this page.</p>
</div>
</main>
<footer>
<p class="disclaimer">Shows only what's visible to this extension. Actual exposure may be greater.</p>
</footer>
</div>
<script src="popup.js"></script>
</body>
</html>