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

Side by Side Diff: chrome/browser/resources/options/extension_settings.html

Issue 7794023: Convert chrome://extensions to a settings page within the options pages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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 | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 <div id="extension-settings" class="page" hidden>
2 <h1 i18n-content="extensionSettingsTitle"></h1>
3 <div id="dev-toggle">
4 <input id="toggle-dev-on" type="checkbox" value="off"></input>
5 <label title="Toggle developer mode" for="toggle-dev-on"
csilv 2011/09/01 19:52:53 The title should be localized. Instead of this at
Finnur 2011/09/02 13:58:47 This tooltip is kind of useless and obvious. Remov
6 i18n-content="developerMode" />
7 </div>
8 <div class="displaytable">
9 <div id="dev" class="dev-closed">
10 <table id="dev-table" width="100%">
11 <tr>
12 <td>
13 <button id="load-unpacked">Load unpacked extension...</button>
csilv 2011/09/01 19:52:53 Use i18n-content to localize strings, here and bel
Finnur 2011/09/02 13:58:47 Ah, good catch! On 2011/09/01 19:52:53, csilv wro
14 <button id="pack-extension">Pack extension...</button>
15 </td>
16 <td align="right">
17 <button id="update-extensions-now">Update extension now</button>
18 </td>
19 </tr>
20 </table>
21 </div>
22 <section class="content">
23 <div class="extension-settings">
24 <list class="big-list" id="extension-settings-list"></list>
25 </div>
26 </section>
27 </div>
28 <section>
29 <div><strong id="no-extensions"
csilv 2011/09/01 19:52:53 set the 'hidden' attribute rather than the style t
Finnur 2011/09/02 13:58:47 Done.
30 i18n-content="noExtensions"
31 style="display: none"></strong></div>
32 <div id="suggest-gallery" style="display: none"></div>
33 <div id="get-more-extensions-container">
34 <image src="chrome://theme/IDR_WEBSTORE_ICON_32" />
csilv 2011/09/01 19:52:53 don't need the trailing slash for image tags w/ HT
Finnur 2011/09/02 13:58:47 Done.
arv (Not doing code reviews) 2011/09/06 20:55:47 <img> <image> is an IE compat quirk
35 <div id="get-more-extensions"></div>
36 </div>
37 </section>
38 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698