- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / examples / api / tabs / pin / manifest.json
1 {
2   "name": "Keyboard Pin",
3   "version": "0.3",
4   "description": "Creates a keyboard shortcut (Alt + Shift + P) to toggle the pinned state of the currently selected tab",
5   "background": {
6     "persistent": false,
7     "scripts": ["background.js"]
8   },
9   "commands": {
10     "toggle-pin": {
11       "suggested_key": { "default": "Alt+Shift+P" },
12       "description": "Toggle tab pin"
13     }
14   },
15   "manifest_version": 2
16 }