Upstream version 10.38.222.0
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / manifest_tests / file_handlers_invalid_extension_element.json
1 {
2   "name": "test",
3   "description": "App with file_handlers manifest.",
4   "version": "1",
5   "app": {
6     "background": {
7       "scripts": ["background.js"]
8     }
9   },
10   "file_handlers": {
11     "text": {
12       "types": [
13         "text/*"
14       ],
15       "title": "Text editor"
16     },
17     "image": {
18       "types": [
19         "image/*"
20       ],
21       "extensions": [
22         [".png"]
23       ],
24       "title": "Image editor"
25     }
26   }
27 }