-
Notifications
You must be signed in to change notification settings - Fork 4
/
popup.html
63 lines (52 loc) · 2.07 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
59
60
61
62
<html>
<head>
<title>Tab Recorder : Popup</title>
<meta charset="utf-8" />
<!-- Core CSS -->
<link rel="stylesheet" type="text/css" href="css/popup.css" />
<!-- We actually want all the JS to load first before we show the popup -->
<!-- Core JS Scripts -->
<script src="js/third_party/jquery-2.1.1-simplified.min.js"></script>
<script src="js/constants.js"></script>
<!-- Plugin JS Scripts -->
<!-- END Plugin JS Scripts -->
<script src="js/popup.js"></script>
<!-- END Core JS Scripts -->
</head>
<body>
<div id="content">
<h1><img src="images/icon24.png" alt="" />
Tab Recorder
<button id="optionsButton" title="Options" type="button"></button>
</h1>
<!-- Ways to record the tab -->
<section id="recordingSection">
<h2 class="divider">record <span id="recordingStatus"></span></h2>
<button id="screenshotButton" class="icon"
data-request="captureTabScreenshot"
title="Take .png screenshot of active tab" type="button">
<img src="images/aperture-2x.png" alt="" />
Picture
</button>
<button id="videoButton" class="icon"
data-request="captureTabVideo"
title="Record a .webm video file of active tab" type="button">
<img src="images/video-2x.png" alt="" />
Video
</button>
<button id="gifButton" class="icon"
data-request="captureTabGif"
title="Record a .gif image file of active tab" type="button">
<img src="images/layers-2x.png" alt="" />
GIF
</button>
</section>
<!-- Immediate actions that are relevant to the page -->
<section id="actionsSection">
</section>
<!-- Plugins to the extension -->
<section id="pluginsSection">
</section>
</div>
</body>
</html>