Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
probably not... zdnet.com/blog/security/… – bcm Jul 3 '10 at 16:47

5 Answers

up vote 99 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";
share|improve this answer
7  
How to do this on OS X? – landon9720 Jul 10 '10 at 0:55
1  
@landon9720 see the answer by ectype. – ANeves Jan 9 '12 at 14:59
how can i re-enable it again? chrome.exe --enable-web-security doesn't work ^^ – Berty Aug 4 '12 at 9:45
3  
@Berty Just close chrome and open it without the tag. Chrome will only be in that mode if it was opened with that tag – Nick Miceli Aug 14 '12 at 14:54
2  
@landon9720 Close Chrome, open terminal, type open /Applications/Google\ Chrome.app --args --disable-web-security – Seanonymous Mar 7 at 19:29
show 6 more comments

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.

share|improve this answer

If you are using Google Chrome on Linux, following command works.

google-chrome  --disable-web-security
share|improve this answer

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"]
    })
share|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 '12 at 13:09

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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