镀铬物清单2 json背景不运作

时间:2012-09-29 07:10:07

标签: javascript json google-chrome manifest

我正在做一个Chrome应用程序来显示twitter搜索小部件。我的应用程序适用于清单版本1并使用“backgroud_page”我可以很好地显示我的应用程序主html页面并且它运行良好但是使用清单版本2的新背景对我不起作用。

"description": "Live",
  "version": "1",
  "manifest_version": 1,
  "app": {
    "launch": {
      "local_path": "index.html"
    }
  },
  "background_page":"index.html",

  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }

以上运作良好,但以下效果不佳

  "description": "Live",
  "version": "1",
  "manifest_version": 2,
  "app": {
    "launch": {
      "local_path": "index.html"
    }
  },
  "background": {
    "pages": "index.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }

使用清单2,页面加载但未加载java脚本。但是清单1工作正常。

请你帮帮我..如何使用清单2加载javascript ...

请帮帮我..

1 个答案:

答案 0 :(得分:1)

在背景元素中,它应该是“页面”,而不是“页面”。 http://developer.chrome.com/extensions/background_pages.html