我已经创建了 chrome 扩展并将 crx 文件添加到 chrome 扩展部分。这个 .crx 文件是使用 javascript 和 manifest.json 文件创建的。从 java 脚本,我每 10 秒时间间隔后向我的 java servlet 提供 XMLHttpRequest。我已经在 chrome 版本 18 和 19 上对此进行了测试,它工作正常,但是当我尝试在 chrome 版本 23 中添加 .crx 文件时,XMLHttpRequest 不起作用。JavaScript 代码是:-
try{
var xmlhttp;
if (window.XMLHttpRequest){
xmlhttp=new XMLHttpRequest();
}
else{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200){
/* document.getElementById("myDiv").innerHTML=xmlhttp.responseText;*/
// alert(xmlhttp.responseText);
if(xmlhttp.responseText!="?"){
chrome.browserAction.setBadgeText({text : xmlhttp.responseText});
chrome.browserAction.setIcon({path:"images/IconGreen.png"});
chrome.browserAction.setBadgeBackgroundColor({color : [ 208, 0, 24, 255 ]});
}
else{
chrome.browserAction.setBadgeText({text :"?"});
chrome.browserAction.setIcon({path:"images/IconGrey.png"});
chrome.browserAction.setBadgeBackgroundColor( {color:[190, 190, 190, 230]});
}
}
};
xmlhttp.open("GET"," http://127.0.0.1:8888 /engile/realTimeUpdateCountServlet",true);
xmlhttp.send();
} catch (err) {
alert(err.message);
}
& manifest.json 是
{
"name": "A Chrome Extension",
"version": "4.4.0",
"background": { "scripts": ["background.js"] },
"permissions": [
"tabs",
"webNavigation",
"http://*/*",
"chrome.action"
],
"web_accessible_resources": [
"278CB17EDF811DAFF4CBD7790CBE8C06.cache.html"
],
"browser_action": {
"name": "Make this page red",
"default_icon": "images/IconGrey.png"
},
"manifest_version": 2
}
请给我任何建议。