copay/chrome-app/initial.js

9 lines
170 B
JavaScript

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