How to install a Chrome extension programmatically? How to install a Chrome extension programmatically? google-chrome google-chrome

How to install a Chrome extension programmatically?


Google's current policy on installing extensions via the registry (for Windows machines) is this:Only extensions from the Google Extension Gallery (or Chrome Web Store - CWS) can be installed via the registry.

See this link - https://developer.chrome.com/extensions/external_extensions - for information on how this can be done. Keep in mind the following:

-This technique will still pop-up a msgbox to the user. its not completely silent.

-When using this technique, if the user subsequently removes the extension from her Chrome, the extension gets "blacklisted" on that chrome and will not re-auto-install until the user re-install itmanually. refer to Auto-installing a google chrome extension won't work ! for details.


Chrome has a couple ways of installing extensions programmatically:http://www.chromium.org/administrators/pre-installed-extensions

Edit: yes, this policy has changed by now, as FuzzyAmi points out.