I've read countless answers here at Stockoverflow but none seem to be help me answer my question. Basically, here's my code:
Background.html
chrome.extension.onRequest.addListener(function(request, sender, sendResponse) {
if (request.method == "getIP") {
var req = new XMLHttpRequest();
var domain
var ip = "bla";
chrome.tabs.getSelected(null,function(tab) {
domain = tab.url;
domainSplit = domain.match(/^[\w-]+:\/*\[?([\w\.:-]+)\]?(?::\d+)?/)[1];
req.open (
"GET",
"http://colourpad.co.uk/projects/dub3helper/ip.php?" + domainSplit,
true);
req.onreadystatechange = getIP;
req.send(null);
function getIP() {
if(req.readyState == 4) {
var ip = req.responseText;
alert (ip);
sendResponse({domainToIP: "Tester " + ip });
}
}
});
}
else {
sendResponse({}); //Snub them
}
});
Content script
chrome.extension.sendRequest({method: "getIP"}, function(response) {
$("p#versionNumber").append("<span>: " + response.domainToIP + "</span>");
});
The basics of the script work correctly, i.e. it does bring back the ip as the alert (ip); does fire with the correct ip data. The issue seems to be sending the ip variable to my content script. I think it may be a simple case of placing the sendResponse in the wrong place, but I really can't see why at the moment. I'm new to chrome extension development.
Any help is massively welcome, its driving me mad!