diff options
| author | Teddy Wing | 2014-03-30 22:26:27 -0400 |
|---|---|---|
| committer | Teddy Wing | 2014-03-30 22:26:27 -0400 |
| commit | a0ea6d20f25fe55bdfd8abb3f4d20d0ceb657a90 (patch) | |
| tree | e9f74275b7a6c5e068e329942c442faa05f63b60 /options.html | |
| parent | b5f69d0b3426e86507a88e6f3bda5e758a8fd497 (diff) | |
| parent | c9f0e75dd6ad1d64ce63710216899cf8bb8155ae (diff) | |
| download | chrome-copy-urls-from-all-tabs-a0ea6d20f25fe55bdfd8abb3f4d20d0ceb657a90.tar.bz2 | |
Merge branch 'add-download-functionality'
Diffstat (limited to 'options.html')
| -rw-r--r-- | options.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/options.html b/options.html new file mode 100644 index 0000000..8cbf895 --- /dev/null +++ b/options.html @@ -0,0 +1,51 @@ +<!doctype html> +<html> +<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; } + + .form-element { margin: 1em 0; } + </style> +</head> +<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"> + <div class="form-element"> + Default button click behaviour: + <select id="button-click-behaviour"> + <option value="window">Open Window</option> + <option value="download">Download File</option> + </select> + </div> + + <div class="form-element"> + File format: + <select id="file-format"> + <option value="text">Text</option> + <option value="yaml">YAML</option> + <option value="html">HTML</option> + </select> + </div> + + <div class="form-element"> + <button id="save">Save</button> + <span id="status"></span> + </div> + </div> + </div> + </div> + </div> + + <script src="options.js"></script> +</body> +</html> |
