I've already read all same questions (stackoverflow and all threads/bugs/reports on google forums) but don't find the answer.
I made a simple chrome extension. Windows XP and Windows 8 (64bit). Chrome v35+.
I use GPO (gpedit.msc) - it doesn't work (nothing changes at chrome://policy). (maybe if I understand how it works i will solve my problem?) Then I use regedit tools (or regedit file like example.reg) and set something like
**32bit**
[HKEY_LOCAL_MACHINE\Software\Google\Chrome\Extensions\EXTENSION_ID]
"path"="C:/extension/SampleExtension.crx"
"version"="1.0.0"
[HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ExtensionInstallForcelist]
"1"="EXTENSION_ID;file:///C:/extension/update.xml"
**64bit**
[HKEY_LOCAL_MACHINE\Software\Wow6432Node\Google\Chrome\Extensions\EXTENSION_ID]
"path"="C:/extension/SampleExtension.crx"
"version"="1.0.0"
[HKEY_LOCAL_MACHINE\Software\Wow6432Node\Policies\Google\Chrome\ExtensionInstallForcelist]
"1"="EXTENSION_ID;file:///C:/extension/update.xml"
and after this my extension is appear in chrome://extensions (by the way with GoogleDocs which was already turned on =) but my extension was disabled (turned off) and near it was inscription: "Installed by a third party".
I want (and can't) do some things to get inscription like "Installed by enterprise policy". And I want it to be initially turn on.
Anybody can help?
PS: ADM templates http://dev.chromium.org/administrators/policy-templates
Policy List http://www.chromium.org/administrators/policy-list-3
By the way, in earlier chrome versions I think it solved by setting policy 'InstantEnabled' (now it is deprecated).