diff options
| author | Teddy Wing | 2014-03-30 14:13:42 -0400 |
|---|---|---|
| committer | Teddy Wing | 2014-03-30 14:13:42 -0400 |
| commit | 5e42f11675bb301a4f9329e8e5d50ec136e6f0df (patch) | |
| tree | 20af7e531690a374001862859e20fbc2d5fcc4a0 /options.html | |
| parent | f3da89298d586352066b4f1c6661af3a0abc7f54 (diff) | |
| download | chrome-copy-urls-from-all-tabs-5e42f11675bb301a4f9329e8e5d50ec136e6f0df.tar.bz2 | |
Update options page
* Copy sample code from the docs
http://developer.chrome.com/extensions/options
* Include Chrome UI Bootstrap CSS
https://github.com/roykolak/chrome-bootstrap
Diffstat (limited to 'options.html')
| -rw-r--r-- | options.html | 36 |
1 files changed, 33 insertions, 3 deletions
diff --git a/options.html b/options.html index 70b72e6..16da658 100644 --- a/options.html +++ b/options.html @@ -3,11 +3,41 @@ <head> <title>Chrome Copy URLs From All Tabs - Options</title> + <link rel="stylesheet" href="chrome-bootstrap.css" type="text/css" media="screen" /> + <style> - + #main { opacity: 1; } </style> </head> -<body> - TEST +<body class="chrome-bootstrap"> + <div class="frame"> + <div class="mainview view"> + <div id="main"> + <header> + <h1>Chrome Copy URLs from All Tabs</h1> + </header> + + <div class="content"> + Favorite color: + <select id="color"> + <option value="red">red</option> + <option value="green">green</option> + <option value="blue">blue</option> + <option value="yellow">yellow</option> + </select> + + <label> + <input type="checkbox" id="like"> + I like colors. + </label> + + <div id="status"></div> + <button id="save">Save</button> + </div> + </div> + </div> + </div> + + <script src="options.js"></script> </body> </html> |
