-
Notifications
You must be signed in to change notification settings - Fork 5
/
popup.html
80 lines (76 loc) · 2.51 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
<!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>Modern MyNEU's Popup</title>
<link href="css/popup.css" rel="stylesheet" type="text/css">
<!--
- 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
-->
</head>
<body>
<div class="title-head">
<h1>Modern MyNEU</h1>
<p>By <a target="_new" href="https://github.com/Abbondanzo/Modern-MyNEU">Peter Abbondanzo</a></p>
</div>
<table>
<tr>
<td>
<h3>Toggle Plugin On/Off</h3>
</td>
<td>
<button value="true" id="enable">ON</button>
</td>
</tr>
<tr>
<td>
<h3>Select Theme</h3>
</td>
<td>
<select>
<option value="modern">Modern</option>
</select>
</td>
</tr>
<tr>
<td>
<h3>Custom Color (coming soon)</h3>
</td>
<td>
<input class="jscolor" value="#EA1F23" disabled>
</td>
</tr>
<tr>
<td>
<h3>Default Page</h3>
</td>
<td>
<select id="default-page">
<option value="central" selected="selected">myNEU Central</option>
<option value="selfservice">Self-Service</option>
<option value="community">Community</option>
<option value="coop">Experiential Learning/Co-op</option>
<option value="career">Career Development</option>
<option value="info">InfoChannels</option>
</select>
</td>
</tr>
</table>
<div class="help">
<p>Any questions or bugs? Report them by <a target="_new" href="https://github.com/Abbondanzo/Modern-MyNEU/issues">clicking here</a></p>
</div>
<a href="options.html" target="_blank" style="text-decoration: none;">
<p class="options"><img src="img/wrench.png"> More Options</p>
</a>
<div id="status"></div>
</body>
<script type="text/javascript" src="js/popup.min.js"></script>
<!-- <script type="text/javascript" src="js/jscolor.min.js"></script> -->
</html>