OLD | NEW |
---|---|
(Empty) | |
1 { | |
2 "name": "An extension to test updating keybinding preferences", | |
3 "version": "1.0", | |
4 "manifest_version": 2, | |
5 "background": { | |
6 "scripts": ["background.js"] | |
7 }, | |
8 "commands": { | |
9 "command_A": { | |
10 "suggested_key": { | |
11 "default": "Alt+A" | |
12 }, | |
13 "description": "Test fails if called (It will be removed during testing)." | |
14 }, | |
15 "command_B": { | |
16 "suggested_key": { | |
17 "default": "Alt+B" | |
18 }, | |
19 "description": "Will be uptated to 'Alt+A' during testing." | |
20 }, | |
21 "command_C": { | |
22 "suggested_key": { | |
23 "default": "Alt+C" | |
24 }, | |
25 "description": "Test fails if called (It will be removed during testing)." | |
26 } | |
27 } | |
28 } | |
OLD | NEW |