0

我正在做一个 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 ...

请帮我..

4

1 回答 1

1

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

于 2012-10-08T14:18:03.627 回答