Does --disable-web-security Work In Chrome Anymore? Does --disable-web-security Work In Chrome Anymore? google-chrome google-chrome

Does --disable-web-security Work In Chrome Anymore?


Check your windows task manager and make sure you kill all chrome processes before running the command.


The new tag for recent Chrome and Chromium browsers is :

--disable-web-security --user-data-dir=c:\my\data


Try this :

Windows:

Fire below commands in CMD to start a new instance of chrome browser with disabled security

Go to Chrome folder:

cd C:\Program Files (x86)\Google\Chrome\Application

Run below command:

chrome.exe --disable-web-security --user-data-dir=c:\my-chrome-data\data

MAC OS:

Run this command in terminal:

open -n -a /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --args --user-data-dir="/tmp/chrome_dev_sess_1" --disable-web-security

Hope this will help both Windows & Mac users!