-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
35 lines (34 loc) · 1.16 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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x"
crossorigin="anonymous"
/>
</head>
<body>
<h2>Get Notifications</h2>
<p>Notifications for repo <span id="name"></span></p>
<button id="btn">Clear</button>
<ol class="list-group list-group-numbered" id="ordered-list">
<!-- <li
class="list-group-item d-flex justify-content-between align-items-start"
>
<div class="ms-2 me-auto">
<div class="fw-bold"></div>
</div>
</li> -->
</ol>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4"
crossorigin="anonymous"
></script>
</body>
<script src="popup.js"></script>
</html>