Update Your Chrome Extensions Without Review
Use this trick to update your browser extension without waiting for chrome web store review, which can take weeks in some cases.
Example of using remote configuration via an admin panel
For example, let’s say that the purpose of our chrome extension is to extract text from images. And one of the supported websites is instagram. And our extension adds an icon like this to each image. And when we click the extension - we use Google Vision API to convert this image into text.
Now, if we wanted to support another website - like Google, for example. Instead of hardcoding image selectors and the list of supported websites into the package of the chrome extension. We can implement a page like this, where an admin user can go in and add a new site like this. Now, when we reload the page - the extension will support this website.
This method is called “remote configuration” and this is something Google actually recommends you use in your extensions.