Wallet/browser-extensions/chrome/copay-chrome-extension/initial.js

8 lines
170 B
JavaScript
Raw Normal View History

2016-08-12 12:44:16 -03:00
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html', {
'bounds': {
'width': 400,
'height': 600
}
});
});