Skip to content

How to Promote Chrome Extension

In this article, we will learn how to promote your Chrome Extension and get more users.

Create a Landing Page

Create a landing page for your Chrome Extension. The landing page should include the following:

Submit to Chrome Web Store

Submit your Chrome Extension to the Chrome Web Store. The Chrome Web Store is the official store for Chrome Extensions and is the best place to reach users.

Add Description

Add a detailed description of your Chrome Extension in the Chrome Web Store. The description should include the following:

Add Title & Description in manifest.json

The requirements for the title and description in the manifest file:

{
    "name": "My Chrome Extension",
    "description": "This is a description of my Chrome Extension."
}

Add Icons and Screenshots

Add Store Icon

The requirements for this icon:

Here you could download png icons for free:

Add Screenshots

The requirements for these screenshots:

Add Small Promo Tile

The requirements for this tile:

Add App Icons in the Code

The requirements for this icon:

icons: {
    "16": "src/assets/icons/icon16.png",
    "48": "src/assets/icons/icon48.png",
    "128": "src/assets/icons/icon128.png"
}

Add Official URL

Add an official URL for your Chrome Extension. This URL should be the landing page for your Chrome Extension.