启动时启动 chrome 应用程序

Launch chrome application on startup

我想在浏览器启动时自动打开打包的 chrome 应用程序。
我试过:chrome-extension://app id/
但它不起作用。我收到 chrome-extension://invalid/ 错误页面。

使用chrome.runtime.onStartup事件,"Fired when a profile that has this extension installed first starts up"。

chrome.runtime.onStartup.addListener(function() {
 chrome.app.window.create("main.html")
})

https://developer.chrome.com/extensions/runtime#event-onStartup