-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpopup.html
31 lines (22 loc) · 829 Bytes
/
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
<!-- Extension initialized with https://github.com/virejdasani/Chrome-Extension-Boilerplate -->
<!DOCTYPE html>
<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">
<link rel="icon" href="assets/icon.png" />
<link rel="stylesheet" href="style.css">
<title>Your extension name</title>
</head>
<body>
<h1>Your Extension</h1>
<p>
<a class="indicator" href="https://www.youtube.com/channel/UCRzS48bskynAxoI38BFypfQ?sub_confirmation=1"
target="_blank">Subscribe to Virej</a> • <a class="indicator"
href="https://github.com/virejdasani/Chrome-Extension-Boilerplate" target="_blank">Give the repo
a ⭐️</a>
</p>
<script src=" popup.js"></script>
</body>
</html>