OLD | NEW |
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 "version": "2.6", | 30 "version": "2.6", |
23 "name": "camo theme", | 31 "name": "camo theme", |
24 <b> "theme": { | 32 <b> "theme": { |
25 "<a href="#images">images</a>" : { | 33 "<a href="#images">images</a>" : { |
26 "theme_frame" : "images/theme_frame_camo.png", | 34 "theme_frame" : "images/theme_frame_camo.png", |
27 "theme_frame_overlay" : "images/theme_frame_stripe.png
", | 35 "theme_frame_overlay" : "images/theme_frame_stripe.png
", |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 |
OLD | NEW |