OLD | NEW |
1 <h1 id="icons">Manifest - Icons</h1> | 1 <h1 id="icons">Manifest - Icons</h1> |
2 | 2 |
3 <p> | 3 <p> |
4 One or more icons that represent the extension, app, or theme. | 4 One or more icons that represent the extension, app, or theme. |
5 You should always provide a 128x128 icon; | 5 You should always provide a 128x128 icon; |
6 it's used during installation and by the Chrome Web Store. | 6 it's used during installation and by the Chrome Web Store. |
7 Extensions should also provide a 48x48 icon, | 7 Extensions should also provide a 48x48 icon, |
8 which is used in the extensions management page | 8 which is used in the extensions management page |
9 (chrome://extensions). | 9 (chrome://extensions). |
10 You can also specify a 16x16 icon to be used as the favicon | 10 You can also specify a 16x16 icon to be used as the favicon |
11 for an extension's pages. | 11 for an extension's pages. |
12 The 16x16 icon is also displayed in the experimental extension | |
13 <a href="http://developer.chrome.com/extensions/infobars">infobar</a> | |
14 feature. | |
15 </p> | |
16 | 12 |
17 <p> | 13 <p> |
18 Icons should generally be in PNG format, | 14 Icons should generally be in PNG format, |
19 because PNG has the best support for transparency. | 15 because PNG has the best support for transparency. |
20 They can, however, be in any format supported by WebKit, | 16 They can, however, be in any format supported by WebKit, |
21 including BMP, GIF, ICO, and JPEG. | 17 including BMP, GIF, ICO, and JPEG. |
22 Here's an example of specifying the icons: | 18 Here's an example of specifying the icons: |
23 </p> | 19 </p> |
24 | 20 |
25 <pre data-filename="manifest.json"> | 21 <pre data-filename="manifest.json"> |
(...skipping 13 matching lines...) Expand all Loading... |
39 <p> | 35 <p> |
40 If you upload your extension, app, or theme using the | 36 If you upload your extension, app, or theme using the |
41 <a href="https://chrome.google.com/webstore/developer/dashboard">Chrome Develope
r Dashboard</a>, | 37 <a href="https://chrome.google.com/webstore/developer/dashboard">Chrome Develope
r Dashboard</a>, |
42 you'll need to upload additional images, | 38 you'll need to upload additional images, |
43 including at least one screenshot of your extension. | 39 including at least one screenshot of your extension. |
44 For more information, | 40 For more information, |
45 see the | 41 see the |
46 <a href="http://code.google.com/chrome/webstore/">Chrome Web Store | 42 <a href="http://code.google.com/chrome/webstore/">Chrome Web Store |
47 developer documentation</a>. | 43 developer documentation</a>. |
48 </p> | 44 </p> |
OLD | NEW |