OLD | NEW |
1 <h1>Formats: Manifest Files</h1> | 1 <h1>Formats: Manifest Files</h1> |
2 | 2 |
3 | 3 |
4 <p> | 4 <p> |
5 Every extension, installable web app, and theme has a | 5 Every extension, installable web app, and theme has a |
6 <a href="http://www.json.org">JSON</a>-formatted manifest file, | 6 <a href="http://www.json.org">JSON</a>-formatted manifest file, |
7 named <code>manifest.json</code>, | 7 named <code>manifest.json</code>, |
8 that provides important information. | 8 that provides important information. |
9 </p> | 9 </p> |
10 | 10 |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 <p> | 182 <p> |
183 One or more icons that represent the extension, app, or theme. | 183 One or more icons that represent the extension, app, or theme. |
184 You should always provide a 128x128 icon; | 184 You should always provide a 128x128 icon; |
185 it's used during installation and by the Chrome Web Store. | 185 it's used during installation and by the Chrome Web Store. |
186 Extensions should also provide a 48x48 icon, | 186 Extensions should also provide a 48x48 icon, |
187 which is used in the extensions management page | 187 which is used in the extensions management page |
188 (chrome://extensions). | 188 (chrome://extensions). |
189 You can also specify a 16x16 icon to be used as the favicon | 189 You can also specify a 16x16 icon to be used as the favicon |
190 for an extension's pages. | 190 for an extension's pages. |
191 The 16x16 icon is also displayed in the experimental extension | 191 The 16x16 icon is also displayed in the experimental extension |
192 <a href="experimental.infobars.html">infobar</a> | 192 <a href="infobars.html">infobar</a> |
193 feature. | 193 feature. |
194 </p> | 194 </p> |
195 | 195 |
196 <p> | 196 <p> |
197 Icons should generally be in PNG format, | 197 Icons should generally be in PNG format, |
198 because PNG has the best support for transparency. | 198 because PNG has the best support for transparency. |
199 They can, however, be in any format supported by WebKit, | 199 They can, however, be in any format supported by WebKit, |
200 including BMP, GIF, ICO, and JPEG. | 200 including BMP, GIF, ICO, and JPEG. |
201 Here's an example of specifying the icons: | 201 Here's an example of specifying the icons: |
202 </p> | 202 </p> |
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
648 goes into more detail about implementing a sandboxing workflow that enables use | 648 goes into more detail about implementing a sandboxing workflow that enables use |
649 of libraries that would otherwise have issues executing under extension's | 649 of libraries that would otherwise have issues executing under extension's |
650 <a href="../extensions/contentSecurityPolicy.html">default Content Security | 650 <a href="../extensions/contentSecurityPolicy.html">default Content Security |
651 Policy</a>. | 651 Policy</a>. |
652 </p> | 652 </p> |
653 | 653 |
654 <p> | 654 <p> |
655 Sandboxed page may only be specified when using | 655 Sandboxed page may only be specified when using |
656 <a href="#manifest_version"><code>manifest_version</code></a> 2 or above. | 656 <a href="#manifest_version"><code>manifest_version</code></a> 2 or above. |
657 </p> | 657 </p> |
OLD | NEW |