Caret/background.js

14 lines
403 B
JavaScript
Raw Normal View History

2013-08-20 00:53:03 +00:00
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,
2013-08-22 06:35:14 +00:00
left: 10,
top: 10
2013-08-20 00:53:03 +00:00
}
2013-08-22 06:35:14 +00:00
}, function(mainWindow) {
mainWindow.contentWindow.launchData = launchData;
2013-08-20 00:53:03 +00:00
});
2013-08-22 06:35:14 +00:00
2013-08-20 00:53:03 +00:00
});