Reputation: 2229
I want to create chrome web app that will open in own window like Google Keep extension for chrome. I made chrome web store package, but how to open it in self window instead of chrome browser ??
Upvotes: 1
Views: 246
Reputation: 18650
Create a packaged app by
{ 'app': { 'background': '...' } ...
. chrome.app.runtime.onLaunched
listener that calls chrome.app.window.createSee the hello-world sample.
Upvotes: 3