Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(396)

Side by Side Diff: go-back-with-backspace/pages/options.html

Issue 2325963003: Add options and a browser-action popup. (Closed) Base URL: https://chromium.googlesource.com/chromium/extensions-by-google.git@master
Patch Set: Response to comments Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « go-back-with-backspace/pages/options.css ('k') | go-back-with-backspace/pages/options.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title i18n="optionsTitle">TITLE</title>
5 <link rel="stylesheet" type="text/css" href="options.css">
6 </head>
7
8 <body>
9 <span i18n="optionsBlacklist"></span><br>
10 <textarea id="blacklist" rows="8"></textarea><br>
11
12 <div class="applets">
13 <input type="checkbox" id="disableInApplets">
14 <label i18n="optionsAppletCheckbox" for="disableInApplets"></label><br>
15 <div class="whitelist">
16 <span i18n="optionsWhitelist" class="toggled"></span><br>
17 <textarea id="whitelist" rows="8" class="toggled"></textarea><br>
18 </div>
19 </div>
20
21 <div id="error">&nbsp;</div>
22 <a href="" i18n="sendFeedback" id="report_page"></a>
23 <div class="buttons">
24 <button i18n="optionsSave" id="done_button"></button>
25 <button i18n="optionsCancel" id="cancel_button"></button>
26 </div>
27
28 <script src="common.js"></script>
29 <script src="options.js"></script>
30 </body>
31 </html>
OLDNEW
« no previous file with comments | « go-back-with-backspace/pages/options.css ('k') | go-back-with-backspace/pages/options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698