1

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 に欠けているものはありますか

4

1 に答える 1

2

これは私が探していたものです:

 "background": { "scripts": ["assets/js/jquery.min.js","background.js"] ,"persistent": false },
于 2013-10-29T12:24:04.977 に答える