How to disable The Same Origin Policy in Firefox Developer Edition

3.3k views Asked by At

How can I disable The Same Origin Policy in Firefox Developer Edition. For Some reason I thought it should be easy to do this in Developer Edition but I can't find the settings.

1

There are 1 answers

4
NoBugs On

Honestly you shouldn't be able to do that in any browser - the service should send Access-Control-Allow-Origin: * or similar if it can be used cross-domain. See https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS#The_HTTP_response_headers

Maybe if you need to test the service before those headers are implemented you could set it to use a local proxy that adds the headers.