Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save abhishekhugetech/cd898b8410a498e1e0b86202ec1d6ebf to your computer and use it in GitHub Desktop.
Save abhishekhugetech/cd898b8410a498e1e0b86202ec1d6ebf to your computer and use it in GitHub Desktop.
Running chrome without web security
Mac OSX
Open your mac terminal
insert this command
```
open -na Google\ Chrome --args --user-data-dir=/tmp/temporary-chrome-profile-dir --disable-web-security --disable-site-isolation-trials
```
Windows
Just do follow these steps:
Right click on the desktop, add a new shortcut
Add the target as
```
"[PATH_TO_CHROME]\chrome.exe" --disable-web-security --disable-gpu --user-data-dir=~/chromeTemp
```
Click OK.
Linux
```
google-chrome --disable-web-security
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment