Skip to content

Instantly share code, notes, and snippets.

@joemarini
Created October 28, 2013 23:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joemarini/7206818 to your computer and use it in GitHub Desktop.
Save joemarini/7206818 to your computer and use it in GitHub Desktop.
Basic template for a new Chrome App manifest file
{
"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