Hi,
in my extension I send a XmlHttpRequest from a background page.
Wouldn't work, I found out that I need to set the permission in my
manifest.json liek this:
"permissions": [
"
http://192.168.33.15:9994/*", //server for my xmlhttprequest
"tabs"
],
Ok, so far so good.
However when I receveive a response my xmlhttp.readyState == 4 and
xmlhttp.status == 0.
Obviously I expect the status to be 200. Any advise?
Cheers