background.js 218 B

123456789
  1. chrome.app.runtime.onLaunched.addListener(function() {
  2. chrome.app.window.create('index.html', {
  3. 'bounds': {
  4. 'width': 400,
  5. 'height': 800
  6. },
  7. 'minWidth': 400
  8. });
  9. });