- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / examples / howto / tab_shortcuts / manifest.json
1 {
2   "name": "Tab Shortcuts",
3   "version": "1.0",
4   "description": "Allows pinning and duplication of tabs via keyboard shortcuts.",
5   "manifest_version": 2,
6   "background": {
7     "scripts": ["tab_shortcuts.js"],
8     "persistent": false
9   },
10   "commands": {
11     "toggle-pin-tab": {
12       "suggested_key": {
13         "default": "Ctrl+Shift+X",
14         "mac": "Command+Shift+X"
15       },
16       "description": "Toggles whether the current tab is pinned."
17     },
18     "duplicate-tab": {
19       "suggested_key": {
20         "default": "Ctrl+Shift+Z",
21         "mac": "Command+Shift+Z"
22       },
23       "description": "Duplicates the current tab."
24     }
25   }
26 }