0

我已经创建了 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
}

请给我任何建议。

4

1 回答 1

0

代码中的问题

  • "browser_action": { "name": "Make this page red", 没有名为name的参数,它必须是"default_title"
  • "permissions": ["tabs","webNavigation", "http://*/*", "chrome.action"],没有权限称为从文档chrome.action中添加相关权限。
于 2013-02-14T07:13:04.660 回答