Hi,
I use a v2 Chrome extension to implement some features in our software. At a high level the workflow involves sending the web page a user is navigating to to a Windows service, that goes through our rules engine and then a response sent back instructing the extension to redirect to a different web page if required. This redirection is done via the Chrome.tabs.update API.
Our extension is loaded via an enterprise app store. This is not a new feature and has been in our software and has worked this way for many years.
In Chrome 118, the extension is loaded correctly. It also successfully sends the web pages a user is visiting to our agent. It does not load the new (redirected) page when instructed to do so.
If I use the manifest and js files directly (via ‘load unpacked’ when in developer mode) then it does work as expected.
Looking in the https://chromestatus.com/roadmap and other sites listing the features\changes in 118, I can not see anything obvious related to what I am seeing. The only similar thing was Enhanced Protection under Safe Browsing. I set my Safe Browsing to ‘No Protection’ to see if that made a difference. It dd not.
Any advice greatly appreciated.
--
You received this message because you are subscribed to the Google Groups "Chromium Extensions" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-extens...@chromium.org.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/chromium-extensions/c2c049df-2436-4cd0-8f12-04642375584an%40chromium.org.
Hi,
I am struggling to get the file_url_navigation_allowed option to take effect. In our setup, we use our windows service to configure the relevant registry keys, namely the ExtensionInstallForceList (under each users HKCU) and NativeMessageHosts (under HKLM\Software\Google\Chrome).
It’s not clear to me where the Extension Settings value is configured, I have seen some conflicting documentation and have tried multiple variations with no success.
I have tried:
HKEY_LOCAL_MACHINE\SOFTWARE\Google\Chrome\Extensions\<extension id>
REG_SZ: file_url_navigation_allowed
Value: true
Same as above but with a DWORD
Same as above but under HKCU
HKCU\SOFTWARE\Policies\Google\Chrome\ExtensionSettings
REG_SZ: (Default)
Value: { "<extension id>": { "file_url_navigation_allowed": true}}
HKCU\SOFTWARE\Policies\Google\Chrome\ExtensionSettings\<extension id>
REG_SZ: file_url_navigation_allowed
Value: true
Same as above but with a DWORD
Same as above but under HKCU
I have also tried adding
"file_url_navigation_allowed": true,
To the list of properties in my manifest.json, alongside name, description, update_url etc
Hopefully you can provide the correct location for this setting.
Thanks