Created
April 3, 2013 21:35
-
-
Save jookyboi/5305595 to your computer and use it in GitHub Desktop.
Open Chrome hosted app in a separate toolbar-less window. Also see: https://developers.google.com/chrome/apps/docs/developers_guide
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "My App", | |
"description": "This my app.", | |
"version": "1.0", | |
"manifest_version": 2, | |
"app": { | |
"urls": [ | |
"http://example.com" | |
], | |
"launch": { | |
"web_url": "http://example.com", | |
"container": "panel", | |
"width": 1200, | |
"height": 768 | |
} | |
}, | |
"icons": { | |
"128": "chrome-icon-128.png" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment