我想创建 chrome web 应用程序,它将在自己的窗口中打开,例如 Google Keep chrome 扩展程序。我制作了 chrome web store 包,但是如何在自己的窗口而不是 chrome 浏览器中打开它?
问问题
184 次
1 回答
3
通过以下方式创建打包的应用程序
- 使用带有
{ 'app': { 'background': '...' } ...
. _ - 添加一个
chrome.app.runtime.onLaunched
调用chrome.app.window.create的监听器
请参阅hello-world 示例。
于 2013-08-27T21:37:49.863 回答