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

Side by Side Diff: chrome/common/extensions/docs/static/themes.html

Issue 340021: Minor doc fixes/improvements. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 1 month 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
OLDNEW
1 <div id="pageData-showTOC" class="pageData">true</div> 1 <div id="pageData-showTOC" class="pageData">true</div>
2 2
3 <p> 3 <p>
4 A <em>theme</em> is a special kind of extension 4 A <em>theme</em> is a special kind of extension
5 that changes the way the browser looks. 5 that changes the way the browser looks.
6 Themes are <a href="packaging.html">packaged</a> like regular extensions, 6 Themes are <a href="packaging.html">packaged</a> like regular extensions,
7 but they don't contain JavaScript or HTML code. 7 but they don't contain JavaScript or HTML code.
8 </p> 8 </p>
9 9
10 <p> 10 <p>
11 You can find and try a bunch of themes at the 11 You can find and try a bunch of themes at the
12 <a href="https://tools.google.com/chrome/intl/en/themes/">themes gallery</a>. 12 <a href="https://tools.google.com/chrome/intl/en/themes/">themes gallery</a>.
13 </p> 13 </p>
14 14
15 <h2> Manifest </h2> 15 <h2> Manifest </h2>
16 <p> 16 <p>
17 Here is an example <code>manifest.json</code> file for a theme: 17 Here is an example
18 <a href="manifest.html"><code>manifest.json</code></a>
19 file for a theme:
20 </p>
21
22 <p class="comment">
23 [PENDING: This page should eventually be (or point to) something
24 that's very friendly to artists.
25 You should only have to look at one page to create a theme.]
18 </p> 26 </p>
19 27
20 <pre> 28 <pre>
21 { 29 {
22 &nbsp;&nbsp;"version": "2.6", 30 &nbsp;&nbsp;"version": "2.6",
23 &nbsp;&nbsp;"name": "camo theme", 31 &nbsp;&nbsp;"name": "camo theme",
24 <b>&nbsp;&nbsp;"theme": { 32 <b>&nbsp;&nbsp;"theme": {
25 &nbsp;&nbsp; &nbsp;"<a href="#images">images</a>" : { 33 &nbsp;&nbsp; &nbsp;"<a href="#images">images</a>" : {
26 &nbsp;&nbsp; &nbsp; &nbsp;"theme_frame" : "images/theme_frame_camo.png", 34 &nbsp;&nbsp; &nbsp; &nbsp;"theme_frame" : "images/theme_frame_camo.png",
27 &nbsp;&nbsp; &nbsp; &nbsp;"theme_frame_overlay" : "images/theme_frame_stripe.png ", 35 &nbsp;&nbsp; &nbsp; &nbsp;"theme_frame_overlay" : "images/theme_frame_stripe.png ",
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 and 1 as <em>all pixels white</em>. 126 and 1 as <em>all pixels white</em>.
119 </li> 127 </li>
120 </ul> 128 </ul>
121 129
122 <p> 130 <p>
123 You can alternatively use <code>-1.0</code> for any of the HSL values 131 You can alternatively use <code>-1.0</code> for any of the HSL values
124 to specify <em>no change</em>. 132 to specify <em>no change</em>.
125 </p> 133 </p>
126 134
127 135
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/static/packaging.html ('k') | chrome/common/extensions/docs/themes.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698