-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpopup.html
35 lines (34 loc) · 904 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
<!--
popup.html
Popup page
Copyright (c) 2011 Alexey Savartsov <[email protected]>
Licensed under the MIT license
-->
<head>
<link rel="stylesheet" type="text/css" href="css/popup.css">
<script src="js/jquery-1.7.min.js"></script>
<script src="js/md5.js"></script>
<script src="js/lastfm.js"></script>
<script src="js/popup.js"></script>
</head>
<body>
<div id="main">
<div id="cover-box">
<img id="cover">
</div>
<div id="song">
<div id="now-playing">
<p id="artist"></p>
<p id="track"></p>
</div>
<div id="lastfm-buttons">
<span id="love-button"></span>
</div>
</div>
</div>
<div class="clear"></div>
<div id="bottom">
<div id="scrobbling"></div>
<div id="lastfm-profile"></div>
</div>
</body>