-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathupdates.html
More file actions
43 lines (42 loc) · 896 Bytes
/
updates.html
File metadata and controls
43 lines (42 loc) · 896 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Extension Updates</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 15px;
}
.update-card {
border: 1px solid #ccc;
padding: 10px;
margin: 5px 0;
border-radius: 5px;
background: #f9f9f9;
}
button {
margin-top: 5px;
padding: 5px 10px;
border: none;
border-radius: 4px;
cursor: pointer;
}
.upgrade-btn {
background: #4caf50;
color: white;
}
.restart-btn {
background: #2196f3;
color: white;
margin-left: 5px;
}
</style>
</head>
<body>
<h3>🔄 Extension Updates </h3>
<div id="updates-container"> Checking for updates...</div>
<script src="updates.js"></script>
</body>
</html>