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 / conflicting / manifest.json
blobfb7e00b71576a2e62fb2858fe83c8862767c0a88
2   "name": "Conflicting keybinding test, duplicate of Basics extension (dir next to this), but uses different messages",
3   "version": "1.0",
4   "manifest_version": 2,
5   "background": {
6     "scripts": ["background.js"]
7   },
8   "permissions": ["activeTab"],
9   "browser_action": {
10     "default_title": "Send message"
11   },
12   "commands": {
13     "toggle-feature": {
14       "suggested_key": {
15         "windows": "Ctrl+Shift+Y",
16         "mac": "MacCtrl+Shift+Y",
17         "linux": "Ctrl+Shift+Y",
18         "chromeos": "Ctrl+Shift+Y",
19         "default": "Ctrl+Shift+Y"
20       },
21       "description": "Toggle feature foo"
22     },
23     "_execute_browser_action": {
24       "suggested_key": {
25         "mac": "MacCtrl+Shift+F",
26         "default": "Ctrl+Shift+F"
27       }
28     }
29   }