NDOE
NDOE

Reputation: 145

How to update multiple chrome extensions in the same time?

I have a few almost equal extensions on chrome store (some of configs are different, images, names..). Extensions have same code with mentioned differences. How can I automatically update all extensions if I make some hotfix? Currently, I need to update each separately which is time consuming. Thanks!

Upvotes: 0

Views: 48

Answers (1)

Xan
Xan

Reputation: 77523

You could use the Webstore Publishing API to programmatically upload updates and publish them.

There's an official guide on using the API.

Short version:

  • You need to create a Google Developers Console project and enable the API for it.
  • You need to take the Client ID / secret from the Developer Console.
  • You need to obtain an access token through OAuth with the above.
  • Using this token, you can upload updates and publish them with a REST API.

Upvotes: 1

Related Questions