1 <h1 id=
"icons">Manifest - Icons
</h1>
4 One or more icons that represent the extension, app, or theme.
5 You should always provide a
128x128 icon;
6 it's used during installation and by the Chrome Web Store.
7 Extensions should also provide a
48x48 icon,
8 which is used in the extensions management page
10 You can also specify a
16x16 icon to be used as the favicon
11 for an extension's pages.
14 Icons should generally be in PNG format,
15 because PNG has the best support for transparency.
16 They can, however, be in any format supported by WebKit,
17 including BMP, GIF, ICO, and JPEG.
18 Here's an example of specifying the icons:
21 <pre data-filename=
"manifest.json">
22 "icons": {
"16":
"icon16.png",
24 "128":
"icon128.png" },
28 You may provide icons of any other size you wish, and Chrome will attempt to use
29 the best size where appropriate. For example, Windows often requires
32-pixel
30 icons, and if the app includes a
32-pixel icon, Chrome will choose that instead
31 of shrinking a
48-pixel icon down. However, you should ensure that all of your
32 icons are square, or unexpected behavior may result.
36 If you upload your extension, app, or theme using the
37 <a href=
"https://chrome.google.com/webstore/developer/dashboard">Chrome Developer Dashboard
</a>,
38 you'll need to upload additional images,
39 including at least one screenshot of your extension.
42 <a href=
"http://code.google.com/chrome/webstore/">Chrome Web Store
43 developer documentation
</a>.