- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / keybinding / synthesized / manifest.json
1 {
2   "name": "A browser action with no command, should get synthesized command",
3   "version": "1.0",
4   "manifest_version": 2,
5   "background": {
6     "scripts": ["background.js"]
7   },
8   "browser_action": {
9     "default_title": "browser action"
10   },
11   "commands": {
12     "unrelated-feature": {
13       "suggested_key": {
14         "mac": "MacCtrl+Shift+Y",
15         "default": "Ctrl+Shift+Y"
16       },
17       "description": "Toggle feature foo"
18     }
19   }
20 }