How to run Chrome without CORS

run Chrome without CORS

How to run Chrome without CORS

Views: 37
0 0
Read Time:59 Second

In this article we are going to show how to run Chrome without CORS or better how to disable some Chrome security settings. This happens a lot if you are developing an app that is being executed on your development serve (i.e. your laptop) and is trying to reach some APIs hosted somewhere else.

CORS stays for Cross Origin Resource Sharing and it’s a security setting by the server. It means that the requests to that server must come from the same server that serve the application (more information here https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS).

You can easily achieve this by

Step 1:

Close all Google Chrome instances

Step 2:

Windows users can run this command from the command line

"C:\Program Files\Google\Chrome\Application\chrome.exe" --disable-web-security --user-data-dir="C:\Users\BrewedBrilliance\AppData\Local\Google\Chrome\User Data"  --disable-web-security  --user-data-dir=~/chromeTemp

For Mac users

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

Linux users

google-chrome --disable-web-security

Job done!

Please share and help us grow!

happy How to run Chrome without CORS
Happy
0 %
sad How to run Chrome without CORS
Sad
0 %
excited How to run Chrome without CORS
Excited
0 %
sleepy How to run Chrome without CORS
Sleepy
0 %
angry How to run Chrome without CORS
Angry
0 %
surprise How to run Chrome without CORS
Surprise
0 %

Share this content:

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x