-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
27 lines (27 loc) · 803 Bytes
/
popup.html
File metadata and controls
27 lines (27 loc) · 803 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
<!doctype html>
<html>
<head>
<title>Current Tab's Info</title>
<script src="popup.js"></script>
<style>
html {
min-width: 250px;
background-color: #333333;
border-left: 2px solid #FFFFFF;
border-right: 2px solid #FFFFFF;
color: #F2F2F2;
}
</style>
</head>
<body>
<h1>Current Tab's Info</h1>
<div>
<p><b>Favicon: </b><img src="" id="favicon"></span></p>
<p><b>Title: </b><span id="title"></span></p>
<p><b>URL: </b><span id="url"></span></p>
<p><b>Incognito Mode: </b><span id="incognito"></span></p>
<p><b>Tab Number in Current Window: </b><span id="tab_num"></span></p>
<p><b>Loading Status: </b><span id="loading"></span></p>
</div>
</body>
</html>