Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 { | |
| 2 "name": "An extension to test shortcuts propagation", | |
| 3 "version": "1.0", | |
| 4 "manifest_version": 2, | |
| 5 "background": { | |
| 6 "scripts": ["background.js"] | |
| 7 }, | |
| 8 "permissions": [ "tabs" ], | |
| 9 "commands": { | |
| 10 "Search-Shift-Left": { | |
| 11 "description": "Test non-conversion of this key", | |
| 12 "suggested_key": { | |
| 13 "chromeos": "Search+Shift+Left" | |
| 14 } | |
| 15 }, | |
| 16 "Search-Shift-Up": { | |
|
Devlin
2014/09/11 18:41:01
nit: indentation
David Tseng
2014/09/11 19:34:20
Done.
| |
| 17 "description": "Test non-conversion of this key", | |
| 18 "suggested_key": { | |
| 19 "chromeos": "Search+Shift+Up" | |
| 20 } | |
| 21 }, | |
| 22 "Search-Shift-Right": { | |
| 23 "description": "Test non-conversion of this key", | |
| 24 "suggested_key": { | |
| 25 "chromeos": "Search+Shift+Right" | |
| 26 } | |
| 27 }, | |
| 28 "Search-Shift-Down": { | |
| 29 "description": "Test non-conversion of this key", | |
| 30 "suggested_key": { | |
| 31 "chromeos": "Search+Shift+Down" | |
| 32 } | |
| 33 } | |
| 34 } | |
| 35 } | |
| OLD | NEW |