AIM:新しいタブが開かれるたびに、拡張機能はサーバーへのURLでリクエストを行い、応答を取得してアイコンの色を変更します。
background.js :
chrome.tabs.onUpdated.addListener(function (tabId, changeInfo, tab)
{
url = "http://localhost/test.php?"+ $.param({"url":tab.url});
$.get(url, function(responseText) {
console.log("sent data");
});
});
manifest.json :
..."background": { "scripts": ["background.js"] ,"persistent": false },
"permissions": ["tabs","http://localhost/", "http://*/*"],....
これは機能しません。
ただし、拡張ページのボタンに次のようにバインドされている場合:
function send_url(){
chrome.tabs.getSelected(null,function(tab){
url = "http://localhost/test.php?"+ $.param({"url":tab.url});
$.get(url, function(responseText) {
console.log("url sent ");
});
});
}
これにより、URLがローカルサーバーに送信されます! background.js に欠けているものはありますか