-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
134 lines (116 loc) · 3.37 KB
/
Copy pathpopup.html
File metadata and controls
134 lines (116 loc) · 3.37 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body {
width: 300px;
padding: 16px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
font-size: 14px;
line-height: 1.4;
}
.header {
display: flex;
align-items: center;
margin-bottom: 16px;
}
.icon {
width: 24px;
height: 24px;
margin-right: 8px;
display: flex;
align-items: center;
justify-content: center;
}
.icon img {
width: 100%;
height: 100%;
object-fit: contain;
}
h1 {
margin: 0;
font-size: 16px;
font-weight: 600;
color: #333;
}
.status {
padding: 12px;
border-radius: 6px;
margin-bottom: 16px;
font-size: 13px;
}
.status.active {
background: #e8f5e8;
color: #2d5a2d;
border: 1px solid #b8e6b8;
}
.status.inactive {
background: #f5f5f5;
color: #666;
border: 1px solid #ddd;
}
.supported-sites {
margin-top: 16px;
}
.supported-sites h3 {
margin: 0 0 8px 0;
font-size: 14px;
font-weight: 500;
color: #333;
}
.site-list {
list-style: none;
padding: 0;
margin: 0;
}
.site-list li {
padding: 4px 0;
font-size: 12px;
color: #666;
}
.site-list li:before {
content: "✓ ";
color: #4ecdc4;
font-weight: bold;
}
.footer {
margin-top: 16px;
padding-top: 16px;
border-top: 1px solid #eee;
font-size: 11px;
color: #999;
text-align: center;
}
</style>
</head>
<body>
<div class="header">
<div class="icon">
<img src="./icons/icon48.png" alt="DeleteThing Logo">
</div>
<h1>DeleteThing</h1>
</div>
<div id="status" class="status inactive">
<strong>Status:</strong> <span id="status-text">Not active on this page</span>
</div>
<div class="supported-sites">
<h3>Supported Sites:</h3>
<ul class="site-list">
<li>Vercel project deletion</li>
<li>Netlify project deletion</li>
<li>Cloudflare Pages deletion</li>
<li>Cloudflare Workers deletion</li>
</ul>
</div>
<div class="footer">
Navigate to a supported site's delete page<br>
and the extension will auto-fill the fields.
</div>
<footer style="text-align: center; margin-top: 16px; font-size: 12px; color: #666;">
Developed by <a href="https://github.com/2u841r" target="_blank" style="color: #0d6efd; text-decoration: none;">Zubair Ibn Zamir</a><br>
<a href="https://github.com/2u841r/DeleteThing" target="_blank" style="color: #0d6efd; text-decoration: none;">GitHub Repository</a>
</footer>
<script src="popup.js"></script>
</body>
</html>