- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / examples / api / commands / manifest.json
1 {
2   "name": "Sample Extension Commands extension",
3   "description": "Press Ctrl+Shift+F (Command+Shift+F on a Mac) to open the browser action popup, press Ctrl+Shift+Y to send an event (Command+Shift+Y on a Mac).",
4   "version": "1.0",
5   "manifest_version": 2,
6   "background": {
7     "scripts": ["background.js"],
8     "persistent": false
9   },
10   "browser_action": {
11     "default_popup": "browser_action.html"
12   },
13   "commands": {
14     "toggle-feature": {
15       "suggested_key": { "default": "Ctrl+Shift+Y" },
16       "description": "Send a 'toggle-feature' event to the extension"
17     },
18     "_execute_browser_action": {
19       "suggested_key": {
20         "default": "Ctrl+Shift+F",
21         "mac": "MacCtrl+Shift+F"
22       }
23     }
24   }
25 }