]> git.wh0rd.org - chrome-ext/web-power-switch.git/blob - popup.html
support minifying css files too
[chrome-ext/web-power-switch.git] / popup.html
1 <!-- Written by Mike Frysinger <vapier@gmail.com>. Released into the public domain. Suck it. -->
2 <!doctype html>
3 <html>
4
5 <head>
6 <title>Web Power Switch Manager</title>
7 <script src='common.js'></script>
8 <script src='popup.js'></script>
9 <style>
10 table#buttons {
11 margin: 0px;
12 padding: 0px;
13 border-collapse: collapse;
14 }
15 body {
16 margin: 0px;
17 padding: 0px;
18 }
19 td {
20 white-space: nowrap;
21 }
22 div#status {
23 white-space: nowrap;
24 }
25 </style>
26 </head>
27
28 <body>
29 <div id='status'>Loading...</div>
30 <table id='buttons'></table>
31 </body>
32 </html>