-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
59 lines (49 loc) · 2.43 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en-US" style="height: 290px; width: 340px;">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>YouTube Tab Switch</title>
<link rel="stylesheet" href="lib/fa/font-awesome.min.css">
<link rel="stylesheet" href="lib/bootstrap.min.css">
<link rel="stylesheet" href="popup.css">
<script src="lib/jquery-3.4.1.min.js"></script>
<script src="lib/bootstrap.min.js"></script>
<script src="js/popup.js"></script>
</head>
<body style="font-family: verdana, calibri, arial; font-size: small;">
<div class="content">
<!-- Nav pills -->
<ul class="nav nav-pills" role="tablist">
<li class="nav-item">
<a class="nav-link active" data-toggle="pill" href="#settings"><span>Settings</span></a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="pill" href="#about">About</a>
</li>
</ul>
<!-- Tab panes -->
<div class="tab-content" style="text-align: center;">
<div id="settings" class="container tab-pane active">
<div style="text-align: center;">
<h5 class="text-center" style="padding-top: 10px;">YouTube Tab Switch should be ...</h5>
<label class="rocker">
<input type="checkbox" id="toggle-app" checked>
<span class="switch-left">ON</span>
<span class="switch-right">OFF</span>
</label>
</div>
</div>
<div id="about" class="container tab-pane fade" style="vertical-align: middle;">
<h5>Support me in the following ways:</h5>
<br>
<br>
<a target="_blank" href="#" class="btn"><span>Give Me A Rating</span></a>
<a target="_blank" href="https://github.com/seungguini/youtube-tab-switch/issues" class="btn"><span>Submit an Issue</span></a>
<a target="_blank" href="#" class="btn"><span>Buy Me A Coffee</span></a>
<a target="_blank" href="https://github.com/seungguini/youtube-tab-switch" class="btn"><span>Check The Code</span></a>
</div>
</div>
</div>
</body>
</html>