Created
October 28, 2013 23:45
-
-
Save joemarini/7206818 to your computer and use it in GitHub Desktop.
Basic template for a new Chrome App manifest file
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
{ | |
"manifest_version" : 2, | |
"name" : "application_name", | |
"description": "app description < 160 characters", | |
"version" : "0.0.0.0", | |
"minimum_chrome_version" : "30", | |
"app" : { | |
"background": { | |
"scripts": ["main.js"] | |
} | |
}, | |
"permissions": [ | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment