I think happened in the latest update of Chrome. They're not letting any of these content types if they come from a site. This is problematic because I need the chrome developer tools to develop my app making calls to an api. Does anyone know how to disable or override this?
Asked
Active
Viewed 1,318 times
0
-
same here. i m getting the same problem – ashley May 18 '18 at 07:25
-
Found a fix here: https://stackoverflow.com/questions/50146938/chrome-version-66-blocked-current-origin-from-receiving-cross-site-document-at – JP80 Jun 08 '18 at 10:50
1 Answers
0
Change the directory in cmd to "cd Program Files (x86)\Google\Chrome\Application" and execute the below command to disable chrome security and also avoid "Blocked receiving cross-site document warning."
C:\Program Files (x86)\Google\Chrome\Application>chrome.exe --user-data-dir="C:/Chrome dev session" --disable-web-security --user-data-dir --disable-features=CrossSiteDocumentBlockingIfIsolating

vinay
- 1
- 1
-
The --disable-features flag doesn't seem to be working anymore. Any idea why? – Matthew Oct 21 '20 at 19:06