Webview没有在我的chrome扩展中打开

时间:2013-10-08 19:50:36

标签: google-chrome google-chrome-extension webview

当我打开我的扩展程序未编译时(使用iframe,应该有一个webview标记),该应用程序工作正常。当我将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"
  }
}

1 个答案:

答案 0 :(得分:4)

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