location.href
contentscript から popup.html ページに渡すだけの単純な関数があります。動いていない。私が持っているものは..
popup.htmlで..
chrome.tabs.getSelected(null,function(tab)
{
chrome.tabs.sendRequest({req: "getlocation"}, function(response){
return response.reply;
});
});
私のコンテンツスクリプトで...
case "getlocation":
sendResponse({
reply: location.href
});
break;
コードが機能しないのはなぜですか?