Created
January 26, 2025 15:29
-
-
Save abhishekhugetech/cd898b8410a498e1e0b86202ec1d6ebf to your computer and use it in GitHub Desktop.
Running chrome without web security
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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