Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Chrome Version 66 : Blocked current origin from receiving cross-site document at

On my local machine i have been using --disable-web-security --user-data-dir to disable the web security. After upgrading to Chrome Version 66 i have started getting Blocked current origin from receiving cross-site document at ... warning. How to disable the web security for this version of chrome ?

like image 876
Soham Nakhare Avatar asked May 03 '18 04:05

Soham Nakhare


2 Answers

Found a workaround mentioned in https://www.chromium.org/Home/chromium-security/site-isolation

C:\Program Files (x86)\Google\Chrome\Application>chrome.exe --disable-web-securi
ty --user-data-dir --disable-features=CrossSiteDocumentBlockingIfIsolating
like image 172
Soham Nakhare Avatar answered Sep 22 '22 19:09

Soham Nakhare


This has apparently been fixed in Chrome 67. You can find the bug I reported and a workaround here. The command-line workaround requires you to start Chrome with the following argument:

--disable-features=CrossSiteDocumentBlockingIfIsolating,CrossSiteDocumentBlockingAlways

like image 39
Glenn Avatar answered Sep 24 '22 19:09

Glenn