forked from kc596/Facebook_Timer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
28 lines (24 loc) · 976 Bytes
/
popup.html
File metadata and controls
28 lines (24 loc) · 976 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
28
<!doctype html>
<html>
<head>
<title>Facebook Timer Extension</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<h1 class="custom">Facebook Timer</h1>
<h2 class="custom">Total Usage</h2>
<div id="total-timer-display"></div>
<h2 class="custom">Current Usage</h2>
<div id="current-timer-display"></div>
<hr>
<p>
<a href="#" class="action-button shadow animate green" id="refreshButton">Refresh</a>
<a href="#" class="action-button shadow animate red" id="resetButton">Reset Current Timer</a>
</p>
<!-- <a href="#" class="action-button shadow animate blue">Button 2</a>
<a href="#" class="action-button shadow animate yellow">Button 4</a> -->
<p style="font-size:0.9em; text-align: center; color:#4267b2;">Timer can be reset only when facebook's tab is active.</p>
<script src="functions.js"></script>
<script src="popup.js"></script>
</body>
</html>