我希望将我的网络应用程序打包到Chrome打包应用程序中。
我的最终目标如下:
这是我到目前为止所做的:
的manifest.json{
"name": "Hello World!",
"description": "My first Chrome App",
"version": "0.1",
"manifest_version": 2,
"app": {
"background": {
"scripts": ["background.js"]
}
},
"icons": { "16": "icon-16.png", "128": "icon-128.png" }
}
background.js
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('window.html', {
'outerBounds': {
'width': 400,
'height': 500
}
});
});
window.html
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<iframe src="http://example.com/"></iframe>
</body>
</html>
我怀疑,至少window.html
存在问题。具体来说,我怀疑我应该使用<iframe>
来获取我的网络应用内容。
Here is the documentation I have been following
请帮忙。
答案 0 :(得分:2)
你可以这样做,但你需要另一个标签;具体而言,<webview>
tag代替<iframe>
。有关该标记的所有可能性,请参阅链接文档。它还需要"webview"
权限。
请注意,这不适用于&#34;应该像本机应用程序一样&#34;哲学,但 是可能的。
答案 1 :(得分:1)