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