2

当我打开未编译的扩展程序(使用应该有 webview 标签的 iframe)时,应用程序运行良好。当我将 iframe 制作成 webview 并编译时,webview 不显示。popup.html:

<!doctype html>
  <head>
    <title>title</title>
  </head>
<body>
<webview id="foo" src="http://www.google.com/" style="width:640px; height:480px"></webview>
</body>
</html>

显现:

{
  "manifest_version": 2,
  "name": "test",
  "description": "test",
  "version": "1.0",
  "permissions": ["webview"],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  }
}
4

1 回答 1

4

到目前为止,webview 标签 api 仅适用于 chrome 应用程序(根据扩展 API 页面中没有提及 webview 的事实来判断)。因此,目前,您不能在扩展程序或旧版打包应用程序中使用它。

于 2013-10-08T22:29:37.890 回答