目标:当打开新标签时,扩展会向服务器发出带有 url 的请求,并获得响应并更改图标颜色。
背景.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");
});
});
清单.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 是否缺少任何东西