background.js 370 B

1234567891011121314
  1. chrome.runtime.onMessageExternal.addListener((request, sender, sendResponse) => {
  2. chrome.app.window.create('index.html', {
  3. id: '1',
  4. frame: 'none',
  5. innerBounds: {
  6. minWidth: 500,
  7. maxWidth: 500,
  8. width: 500,
  9. minHeight: 650,
  10. maxHeight: 650,
  11. height: 650
  12. }
  13. });
  14. });