0

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?

  • 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 Answers1

0
  1. 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."

  2. 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