I want to develop JavaScript on my Windows machine. Do you know a browser where I can turn off Same Origin Policy so I can develop locally? Firefox would be optimal
In Chrome (& Chromium) 48 and above you should add the flag --user-data-dir
like this:
chromium-browser --disable-web-security --user-data-dir
And it works.
i run this command on mac, it works on me when i use google chrome to run my project.
open -a Google\ Chrome --args --disable-web-security --user-data-dir
Using the Chromium 13.07, you can start it with security disabled:
/usr/bin/chromium-browser --disable-web-security
That's on Ubuntu 11, but change the location as your system.
You can also redirect a local port to the remote server and port via ssh.