jspaint/manifest.json

32 lines
544 B
JSON
Raw Normal View History

2014-03-07 02:35:11 +00:00
{
"name": "Paint",
2015-10-13 18:56:42 +00:00
"version": "1.0.0",
"description": "An MS Paint remake.",
2014-03-07 02:35:11 +00:00
"icons": {
"16": "images/icons/16.png",
"48": "images/icons/48.png",
"128": "images/icons/128.png"
},
"file_handlers": {
"image": {
2015-04-05 17:10:02 +00:00
"types": ["image/*"]
2014-03-07 02:35:11 +00:00
}
},
"permissions": [
"storage",
2014-04-04 08:23:36 +00:00
"fullscreen",
"clipboardRead",
"clipboardWrite",
{"fileSystem": ["write"]}
2014-03-07 02:35:11 +00:00
],
"optional_permissions": [
2014-04-04 08:23:36 +00:00
"unlimited_storage"
2014-03-07 02:35:11 +00:00
],
"app": {
"background": {
"scripts": ["chrome-app.js"]
2014-04-04 08:23:36 +00:00
}
},
"offline_enabled": true,
"manifest_version": 2
2014-03-07 02:35:11 +00:00
}