我想在浏览器启动时自动打开打包的chrome应用程序
我试过了:chrome-extension:// app id /
但它不起作用。我得到chrome-extension://无效/错误页面。
答案 0 :(得分:3)
使用chrome.runtime.onStartup事件,“首次安装此扩展程序的配置文件启动时启动”。
chrome.runtime.onStartup.addListener(function() {
chrome.app.window.create("main.html")
})
https://developer.chrome.com/extensions/runtime#event-onStartup