| OLD | NEW |
| (Empty) |
| 1 { | |
| 2 "name": "An extension to test non-conversion of Chrome OS shortcuts.", | |
| 3 "version": "1.0", | |
| 4 "manifest_version": 2, | |
| 5 "background": { | |
| 6 "scripts": ["background.js"] | |
| 7 }, | |
| 8 "commands": { | |
| 9 "Search-Shift-Left": { | |
| 10 "description": "Test non-conversion of this key", | |
| 11 "suggested_key": { | |
| 12 "chromeos": "Search+Shift+Left" | |
| 13 } | |
| 14 }, | |
| 15 "Search-Shift-Up": { | |
| 16 "description": "Test non-conversion of this key", | |
| 17 "suggested_key": { | |
| 18 "chromeos": "Search+Shift+Up" | |
| 19 } | |
| 20 }, | |
| 21 "Search-Shift-Right": { | |
| 22 "description": "Test non-conversion of this key", | |
| 23 "suggested_key": { | |
| 24 "chromeos": "Search+Shift+Right" | |
| 25 } | |
| 26 }, | |
| 27 "Search-Shift-Down": { | |
| 28 "description": "Test non-conversion of this key", | |
| 29 "suggested_key": { | |
| 30 "chromeos": "Search+Shift+Down" | |
| 31 } | |
| 32 } | |
| 33 } | |
| 34 } | |
| OLD | NEW |