Skip to content

Instantly share code, notes, and snippets.

@quickgrid
Created April 14, 2016 20:10
Show Gist options
  • Save quickgrid/d422682bca6f5905504d173ffa4f09b3 to your computer and use it in GitHub Desktop.
Save quickgrid/d422682bca6f5905504d173ffa4f09b3 to your computer and use it in GitHub Desktop.
Simple chrome clock app using konva JS framework manifest file
{
"name": "Neon Clock",
"author": "Asif Ahmed",
"description": "A simple clock with date and time",
"version": "0.0.1",
"manifest_version": 2,
"app": {
"background": {
"scripts": ["background.js"]
}
},
"icons": {
"16": "clock-16.png",
"128": "clock-128.png"
},
"permissions": ["storage", "alarms", "notifications"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment