I noticed a strange caution message when looking at downloaded resources using Google chrome inspector (F12):
Caution provisional headers a
For chrome v72+ what solved it for me was only this:
go to chrome://flags/
and disable this 3 flags
or you can do it from command line :
chrome --disable-site-isolation-trials --disable-features=NetworkService,NetworkServiceInProcess
why this happen?
It seems that Google is refactoring their Chromium engine into modular structure, where different services will be separated into stand-alone modules and processes. They call this process servicification. Network service is the first step, Ui service, Identity service and Device service are coming up. Google provides the official information at the Chromium project site.
is it dangerous to change that?
An example is networking: once we have a network service we can choose to run it out of process for better stability/security, or in-process if we're resource constrained. source