- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / keybinding / global / manifest.json
1 {
2   "name": "An extension to test global shortcuts",
3   "version": "1.0",
4   "manifest_version": 2,
5   "background": {
6     "scripts": ["background.js"]
7   },
8   "commands": {
9     "Ctrl-Shift-1-non-global": {
10       "suggested_key": {
11         "default": "Ctrl+Shift+1"
12       },      
13       "description": "Test fails if called (non-global)"
14     },
15     "Ctrl-Shift-A-Non-Assignable-Globally": {
16       "suggested_key": {
17         "default": "Ctrl+Shift+A"
18       },      
19       "description":
20           "Test fails if called (Ctrl+Shift+A not auto-assignable globally)",
21       "global": true
22     },
23     "Ctrl-Shift-9-Valid-Global-Shortcut": {
24       "suggested_key": {
25         "default": "Ctrl+Shift+9"
26       },
27       "description": "Test passes if called (global shortcut)",
28       "global": true
29     }
30   }
31 }