-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
52 lines (46 loc) · 1.5 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
<html>
<head>
<script src="background.js"></script>
</head>
<body>
<style type="text/css">
body {
width: 250px;
}
</style>
<h1>Cowsay Autoliker</h1>
<!-- Multiple Checkboxes -->
<div class="control-group">
<div class="controls">
<table>
<tr>
<td>
<label class="checkbox" for="checkboxes-1">
<input type="checkbox" name="checkboxes" id="checkboxes-1" value="Friends">
Friends' posts
</label>
</td>
</tr>
<tr>
<td>
<label class="checkbox" for="checkboxes-0">
<input type="checkbox" name="checkboxes" id="checkboxes-2" value="Comments">
Comments on posts
</label>
</td>
</tr>
<tr>
<td>
<label class="checkbox" for="checkboxes-0">
<input type="checkbox" name="checkboxes" id="checkboxes-3" value="Adds">
Adds
</label>
</td>
</tr>
</table>
</div>
</div>
<p style="font: Tahoma; font-size: 24px;align-content: left;">Likes: <span id="currentLikes"
style="font: Verdana; font-size: 60px; align-content: center;">0</span> </p>
</body>
</html>