Caret/background.js
Thomas Wilburn 2e508a5012 First
2013-08-19 17:53:03 -07:00

11 lines
No EOL
307 B
JavaScript

chrome.app.runtime.onLaunched.addListener(function(launchData) {
//launchData.items will contain files from file manager
chrome.app.window.create("main.html", {
bounds: {
width: 800,
height: 600,
left: 0,
top: 0
}
});
});