无法为Google Chrome扩展程序创建自动更新

时间:2017-06-08 13:35:49

标签: javascript google-chrome google-chrome-extension

我正在开发Google Chrome扩展程序。我需要为我的扩展程序提供自动更新。我也在关注 developer.chrome.com/extensions/autoupdate ,但我的扩展程序没有更新我正在尝试使用命令 - 扩展程序 - 更新频率,我还会检查chrome.runtime.requestUpdateCheck()它返回状态为'限制' 我的清单文件:

   {
  "manifest_version":2,
  "name":"Notification",
  "description": "To notify the Mail count",
  "version": "1.0",
   "update_url": "http://localhost/ext/updates.xml",
"background": {
  "scripts":["popup.js"]
  },
    "browser_action": {
    "default_icon": "icon.png",
    "default_popup":"popup.html"
  },
    "icons": {
    "256": "icon.png"
  },
  "permissions": [
    "tabs",
  "bookmarks",
  "http://*/*",
  "https://*/*",
  "unlimitedStorage",
  "background",
  "notifications"
  ]
}

和我的updates.xml:

<?xml version='1.0' encoding='UTF-8'?>
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
  <app appid='eimjaaebemfnanomhcgnljegahiiffdk'>
    <updatecheck codebase='http://localhost/ext/note_v2.crx' version='2.0' />
  </app>
</gupdate>

我的新扩展程序也位于同一目录中..

请任何人帮助我

提前致谢..............

0 个答案:

没有答案