| 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 <span class="comment"> | |
| 9 [PENDING: check] | |
| 10 </span> | |
| 11 Once installed, the theme specification is copied | |
| 12 into the browser preferences, | |
| 13 allowing users to override individual theme choices. | |
| 14 </p> | 8 </p> |
| 15 | 9 |
| 16 <h2> Manifest </h2> | 10 <h2> Manifest </h2> |
| 17 <p> | 11 <p> |
| 18 Here is an example <code>manifest.json</code> file for a theme: | 12 Here is an example <code>manifest.json</code> file for a theme: |
| 19 </p> | 13 </p> |
| 20 | 14 |
| 21 <pre> | 15 <pre> |
| 22 { | 16 { |
| 23 "version": "2.6", | 17 "version": "2.6", |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 and 1 as <em>all pixels white</em>. | 106 and 1 as <em>all pixels white</em>. |
| 113 </li> | 107 </li> |
| 114 </ul> | 108 </ul> |
| 115 | 109 |
| 116 <p> | 110 <p> |
| 117 You can alternatively use <code>-1.0</code> for any of the HSL values | 111 You can alternatively use <code>-1.0</code> for any of the HSL values |
| 118 to specify <em>no change</em>. | 112 to specify <em>no change</em>. |
| 119 </p> | 113 </p> |
| 120 | 114 |
| 121 | 115 |
| OLD | NEW |