6

We have been using the following to open Google Crome without a Cross-Origin limitation for debug purposes for some time. Yesterday it stopped working on all of our Windows computers.

chrome.exe https://"www.testsite.com" --disable-web-security --user-data-dir="d:/tempchromedata"

Current version of Chrome is Version 70.0.3538.77 (Official Build) (64-bit)

user1480192
  • 627
  • 7
  • 22

1 Answers1

3

Apparently if you add the following it works --disable-site-isolation-trials

user1480192
  • 627
  • 7
  • 22
  • 2
    For me (Chrome 73.0.3683.86) this gives the following notification: `You are using an unsupported command-line flag: --disable-site-isolation-trials. Stability and security will suffer.` What did work however was adding: `--disable-features=IsolateOrigins` – Thomas Mulder Apr 02 '19 at 07:22