-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
91 lines (86 loc) · 3.72 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
<!DOCTYPE html>
<!--
This page is shown when the extension button is clicked, because the
"browser_action" field in manifest.json contains the "default_popup" key with
value "popup.html".
-->
<html>
<head>
<title>Maple.fm's Watchlist</title>
<base target="_blank" />
<style>
body {
font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
font-size: 100%;
}
</style>
<!--
- JavaScript and HTML must be in separate files: see our Content Security
- Policy documentation[1] for details and explanation.
-
- [1]: https://developer.chrome.com/extensions/contentSecurityPolicy
-->
<script src="jquery-1.11.2.min.js"></script>
<script src="bower_components/jquery-cookie/jquery.cookie.js"></script>
<script src="bower_components/sweetalert/lib/sweet-alert.min.js"></script>
<script src="bower_components/jqueryui/jquery-ui.min.js"></script>
<script src="jquery.numeric.min.js"></script>
<script src="popup.js"></script>
<link rel="stylesheet" type="text/css" href="bower_components/sweetalert/lib/sweet-alert.css">
<link href='http://fonts.googleapis.com/css?family=Roboto:100,400,300,700' rel='stylesheet' type='text/css'>
<link href="popup.css" type="text/css" rel="stylesheet">
<link href="octicons/octicons.css" type="text/css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="header">
<div class="backbtn">Back</div>
<div class="maplefm"></div>
<span class="mega-octicon octicon-gear option" style="font-size: 22px"><span class="currentopt"> NEW</span></span>
<ul class="selectoption">
<li class="suboption arrow_box" id="newonly">New items only</li>
<li class="suboption" id="lowest">Lowest Price</li>
</ul>
<select id="serverselect" name="chooseserver">
<option value="0" id="Scania"><div class="server-name">Scania</div></option>
<option value="1" id="Windia"> <div class="server-name">Windia</div></option>
<option value="2" id="Bera"> <div class="server-name">Bera</div></option>
<option value="3" id="Khroa"><div class="server-name">Khroa</div></option>
<option value="4" id="Mybckn"><div class="server-name">Mybckn</div></option>
<option value="5" id="Grazed"><div class="server-name">Grazed</div></option>
</select>
</div>
<div class="searchbar">
<form class="add-item">
<input class="addbox page1" type="text" id="additembox" placeholder="Type to add new item">
</form>
<form class="add-price">
<input class="addprice preview" type="text" placeholder="How much are you willing to pay">
</form>
<div class="searchbtn"></div>
</div>
<div class="watchlist page1">
<div class="item">
<img class="item-icon"/>
<div class="name">Name goes here!</div>
<div class="price">300,000,000 meso or less</div>
</div>
</div>
<div class="preview showitem">
<img class="item-icon pvicon"/>
<div class="pvname">Yo wassap</div>
</div>
<div class="owlOfMinerva">
<div class="item">
<div class="shopname">S> Tyrant Cape U PSOK</div>
<div class="sellprice">by manamonet in ch.5</div>
<div class="fmroom">FM14</div>
</div>
</div>
<div class="disclaimer">
Made with <a href="https://igodzp.github.io" class="octicon octicon-heart pulse"></a> by Gott
<a href="https://www.twitter.com/488AC7" style="text-decoration: none; color: #488AC7; font-size: 12px"><strong>#488AC7</strong></a>
</div>
</div>
</body>
</html>