How to add Chrome Extension icon to Chrome Web Store (new dashboard)

Viewed 428

I published a new Chrome Extension through the developer dashboard but i don't know where to add the extension which shows in the store. In the old developer dashboard there was a separate option, but in the new dashboard I cannot find it.

1 Answers

There is no icon menu in new chrome developer dashboard.

Change your location of icons to root of package zip file, (same level with manifest.json file) and rename icon files to icon_xx.png. ('xx' should be 16, 48, and 128)

Fix 'icon' property of your extension's manifest.json.

Then, after you submit your package, chrome store will recognize icons automatically.

Related