Files
chrome-extensions-samples/samples/github-auth/main.js
2014-09-02 18:06:16 +02:00

7 lines
178 B
JavaScript

chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html',
{ "bounds": { "width": 400, "height": 300 },
"id": "index"
});
});