Created
April 14, 2016 20:10
-
-
Save quickgrid/d422682bca6f5905504d173ffa4f09b3 to your computer and use it in GitHub Desktop.
Simple chrome clock app using konva JS framework 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
{ | |
"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