diff options
author | Einar Egilsson | 2011-09-04 22:53:16 +0200 |
---|---|---|
committer | Einar Egilsson | 2011-09-04 22:53:16 +0200 |
commit | 4b612baf4f29178214edec130856d83a40bf473d (patch) | |
tree | 20e36e3fcf7a24e829640c2fd605622f14af0edc /chrome/redirector.html | |
parent | 8fb65cf8aeaaf66636698310c0168929fc1a2ce0 (diff) |
Total restructuring of files and deletion of old files
Diffstat (limited to 'chrome/redirector.html')
-rw-r--r-- | chrome/redirector.html | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/chrome/redirector.html b/chrome/redirector.html new file mode 100644 index 0000000..9bb6cc7 --- /dev/null +++ b/chrome/redirector.html @@ -0,0 +1,71 @@ +<!DOCTYPE html> +<html> + <head> + <title>Redirector Extension Settings</title> + <link rel="stylesheet" href="css/redirector.css" /> + <script type="text/javascript" src="js/jquery-1.6.2.min.js"></script> + <script type="text/javascript" src="js/redirector-ui.js"></script> + </head> + <body> + <h1>Redirector</h1> + <h5>Go where <em>YOU</em> want!</h5> + <div id="actions"> + <button id="new-redirect">New Redirect...</button> + <button id="configure">Configure</button> + <button id="import">Import</button> + <button id="export">Export</button> + </div> + <ul id="redirect-list"> + <li> + <div>Redirect: <span class="pattern">pattern</span> to <span class="redirectTo"></span></div> + <div>Example: <span class="exampleUrl"></span> becomes <span class="redirectResult"></span></div> + <div> + <a class="edit" href="#edit">Edit</a> + <a class="delete" href="#delete">Delete</a> + </div> + </li> + </ul> + <div id="config"> + <h2>Configuration</h2> + <input type="checkbox" id="enable-redirector" data-pref="enabled" />Enabled + <input type="checkbox" id="show-status-bar-icon" data-pref="showStatusBarIcon"/> Statusbar icon + <input type="checkbox" id="show-context-menu" data-pref="showContextMenu"/> Context menu + <input type="checkbox" id="enable-debug-output" data-pref="debugEnabled"/> Debug output + </div> + <div id="redirect-form"> + <div> + <label>Description</label> + <input type="text" id="description" /> + </div> + <div> + <label>Example URL</label> + <input type="text" id="example-url" /> + </div> + <div> + <label>Include Pattern</label> + <input type="text" id="include-pattern" /> + </div> + <div> + <label>Exclude Pattern</label> + <input type="text" id="exclude-pattern" /> + </div> + <div> + <label>Redirect To</label> + <input type="text" id="redirect-to" /> + </div> + <div> + <label>Pattern Type</label> + <input type="radio" name="pattern-type" id="regex-pattern" /> Regular Expression + <input type="radio" name="pattern-type" id="wildcard-pattern" /> Wildcard + </div> + <div> + <label>Unescape matches</label> + <input type="checkbox" id="unescape-matches" /> + </div> + <div> + <label>Enabled</label> + <input type="checkbox" id="redirect-enabled" /> + </div> + </div> + </body> +</html>
\ No newline at end of file |