-
Notifications
You must be signed in to change notification settings - Fork 21
/
popup.html
99 lines (95 loc) · 2.06 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<title>Simple Gmail Notes Popup</title>
<script src="lib/jquery-3.1.0.min.js"></script>
<script src="common/shared-common.js"></script>
<script src="background.js"></script>
<script src="popup.js"> </script>
<style>
body {
width:200px;
}
div.row {
margin: 10px;
}
.strong{
font-weight: bold;
font-style: italic;
font-size: 120%;
}
.sgn-menu-table a, .sgn-menu-table a:visited{
color:#2e90ce;
text-decoration: none;
vertical-align: middle;
clear: left;
}
.sgn-menu-table img{
height:20px;
margin:5px;
vertical-align: middle;
}
div.logo {
text-align: right;
}
.helper{
display: inline-block;
height: 100%;
vertical-align: middle;
}
</style>
</head>
<body>
<table class='sgn-menu-table'>
<tr>
<td>
<img src="image/popup/how-to-use.png">
</td>
<td>
<a href="https://www.bart.com.hk/how-to-use-simple-gmail-notes/?f=ph">How to Use</a>
</td>
</tr>
<tr>
<td>
<img src="image/popup/sync-mobile.png">
</td>
<td>
<a href="https://www.bart.com.hk/simple-gmail-notes-and-simple-mobile-crm/?f=ph">View notes in mobile phone</a>
</td>
</tr>
<tr>
<td>
<img src="image/popup/preferences.png">
</td>
<td>
<a id="open_options" href="#">Preferences</a>
</td>
</tr>
<tr>
<td>
<img src="image/popup/review.png">
</td>
<td>
<a id='support' href="#">Write a Review</a>
</td>
</tr>
<tr>
<td>
<img src="image/popup/report-a-bug.png">
</td>
<td>
<a href="https://www.bart.com.hk/?f=ph#ContactUs">Report an Issue</a>
</td>
</tr>
<tr>
<td>
<img src="image/popup/support.png">
</td>
<td>
<a href="https://www.bart.com.hk/simple-gmail-notes-support-package/?f=ph">Subscribe to Support Package</a>
</td>
</tr>
</table>
</div>
</body>
</html>