Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / keybinding / continue_propagation / manifest.json
1 {
2   "name": "An extension to test shortcuts propagation",
3   "version": "1.0",
4   "manifest_version": 2,
5   "background": {
6     "scripts": ["background.js"]
7   },
8   "permissions": [ "tabs" ],
9   "content_scripts": [
10     {
11       "matches": [ "<all_urls>" ],
12       "js": ["injected.js"]
13     }
14   ],
15   "commands": {
16     "Ctrl-Shift-F": {
17       "description": "Test propagation of this key",
18       "suggested_key": {
19         "default": "Ctrl+Shift+F",
20         "mac": "MacCtrl+Shift+F"
21       }
22     }
23   }
24 }