Is there a way to disable the same origin policy on Google's Chrome browser? This is strictly for development, not production, use.

link|improve this question

52% accept rate
probably not... zdnet.com/blog/security/… – bcm Jul 3 '10 at 16:47
feedback

5 Answers

up vote 25 down vote accepted

Close chrome (or chromium) and restart with the --disable-web-security argument. I just tested this and verified that I can access the contents of an iframe with src="http://google.com" embedded in a page served from "localhost" (tested under chromium 5 / ubuntu). For me the exact command was:

chromium-browser --disable-web-security

From the chromium source:

// Don't enforce the same-origin policy. (Used by people testing their sites.)
const wchar_t kDisableWebSecurity[] = L"disable-web-security";
link|improve this answer
How to do this on OS X? – landon9720 Jul 10 '10 at 0:55
@landon9720 see the answer by ectype. – ANeves Jan 9 at 14:59
feedback

Yep. For Mac, open Terminal and run:

$ open -a Google\ Chrome --args --disable-web-security

Also if you're trying to access local files for dev purposes like AJAX or JSON, you can use this flag too.

-–allow-file-access-from-files

For PC go into the command prompt and go into the folder where Chrome.exe is and type

chrome.exe --disable-web-security

That should disable the same origin policy and allow you to access local files.

link|improve this answer
feedback

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.

link|improve this answer
feedback

For Selenium Webdriver, you can have selenium start Chrome with the appropriate arguments (or "switches") in this case.

 @driver = Selenium::WebDriver.for(:Chrome, { 
       :detach => false,
       :switches => [“—disable-web-security”]
    })
link|improve this answer
that's two preceeding dashes for disable-web-security. it my browser it made them look like one looong dash. – mikelupo Mar 27 at 13:09
feedback

Answered in http://stackoverflow.com/questions/330427/can-i-disable-sop-same-origin-policy-on-any-browser-for-development.

1st result for Google: disable same origin policy.

link|improve this answer
There are no accepted answers. The others range from "Write a proxy", to Firefox and IE specific answers, to a link to a section of a page on Wikipedia (a section that no longer exists!), to redirecting an entire port (which wouldn't solve any Same Origin problem since it still only lets you access one server at a time). It's all very well linking to the first hit on Google that looks reasonable … but try to make sure it actually answers the question. – Quentin Jun 24 '10 at 8:37
2  
"try starting Chrome with the argument --disable-web-security" – mcandre Jun 24 '10 at 19:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.