Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / keybinding / synthesized / manifest.json
blob7e174c43166ac2625663624b8d03b4ac34880b51
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   }