-
Notifications
You must be signed in to change notification settings - Fork 144
/
popup.html
46 lines (46 loc) · 961 Bytes
/
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
<style type="text/css">
body {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 14px;
margin: 0;
padding: 0;
}
#app_list a {
width: 200px;
color: #555;
text-decoration: none;
display: block;
padding: 5px;
border-bottom: 1px solid #ddd;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
#app_list a:last-child {
border-bottom: none;
}
#app_list a:focus, #app_list a:hover {
text-decoration: none;
background-color: #f5f5f5;
color: #337ab7;
}
#app_list a img {
vertical-align: middle;
margin: 3px 5px;
}
#app_list a .icon {
display: inline-block;
vertical-align: middle;
margin: 3px 5px;
width: 16px;
height: 16px;
}
#app_list a .lib_version {
color: #a9a9a9;
font-size: 12px;
}
</style>
<script src="js/api.js"></script>
<script src="js/popup.js"></script>
<div id="app_list"></div>
<script src="js/analytics.js"></script>