Reputation: 4383
I have developed a Google Chrome Extension that I need to automate installation for my users.
I have published it in Google Web Store but I don't want a user to search for it in order to install, because this extension is part of other development, including a C# application.
I am creating an installer that installs the C# application but I need to add the automatic installation for my extension. How can I do it?
Upvotes: 3
Views: 2887
Reputation: 1144
The best way to do this is the way that Xan wrote in his answer.
If you need to force install Chrome extensions in your company without user interaction. You can do this with ExtensionInstallForcelist policy or with master_preferences file. Both ways described here.
Upvotes: 1
Reputation: 77523
Yes, you can. The procedure is described in the docs.
Summary:
chrome://extensions/
or the CWS listing)Leave clear instructions for your users: that they must restart the browser and expect/accept the prompt.
Upvotes: 2