Is there a way to disable the same origin policy on Google's Chrome browser? This is strictly for development, not production, use.
|
|
Close chrome (or chromium) and restart with the
From the chromium source:
|
|||||||||||||||||||
|
|
Yep. For Mac, open Terminal and run:
Also if you're trying to access local files for dev purposes like AJAX or JSON, you can use this flag too.
For PC go into the command prompt and go into the folder where Chrome.exe is and type
That should disable the same origin policy and allow you to access local files. |
||||
|
|
|
If you are using Google Chrome on Linux, following command works.
|
|||
|
|
|
For Selenium Webdriver, you can have selenium start Chrome with the appropriate arguments (or "switches") in this case.
|
||||
|
|
Probably not. I use the URL rewriting features of Charles Proxy to map remote HTTP APIs to URLs that appear to point to my development server when I need to do that kind of thing. |
|||
|
|