Guest User

Untitled

a guest
Jan 18th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. Uncaught TypeError: Cannot read property 'onLaunched' of undefined
  2.  
  3. {
  4. "name": "Hello World!",
  5. "description": "My first packaged app.",
  6. "manifest_version": 2,
  7.  
  8. "version": "0.1",
  9. "app": {
  10. "background": {
  11. "scripts": ["background.js"]
  12. }
  13. },
  14. "icons": {
  15. "16": "calculator-16.png",
  16. "128": "calculator-128.png"
  17. }
  18.  
  19. chrome.app.runtime.onLaunched.addListener(function() {
  20. chrome.app.window.create('window.html', {
  21. 'width': 400,
  22. 'height': 500
  23. });
  24. });
Add Comment
Please, Sign In to add comment