OLD | NEW |
1 { | 1 { |
2 "name": "An extension to test global shortcuts", | 2 "name": "An extension to test global shortcuts", |
3 "version": "1.0", | 3 "version": "1.0", |
4 "manifest_version": 2, | 4 "manifest_version": 2, |
5 "background": { | 5 "background": { |
6 "scripts": ["background.js"] | 6 "scripts": ["background.js"] |
7 }, | 7 }, |
8 "commands": { | 8 "commands": { |
9 "Ctrl-Shift-1-non-global": { | 9 "Ctrl-Shift-1-non-global": { |
10 "suggested_key": { | 10 "suggested_key": { |
11 "default": "Ctrl+Shift+1" | 11 "default": "Ctrl+Shift+1" |
12 }, | 12 }, |
13 "description": "Test fails if called (non-global)" | 13 "description": "Test fails if called (non-global)" |
14 }, | 14 }, |
15 "Ctrl-Shift-A-Non-Assignable-Globally": { | 15 "Ctrl-Shift-A-Non-Assignable-Globally": { |
16 "suggested_key": { | 16 "suggested_key": { |
17 "default": "Ctrl+Shift+A" | 17 "default": "Ctrl+Shift+A" |
18 }, | 18 }, |
19 "description": | 19 "description": |
20 "Test fails if called (Ctrl+Shift+A not auto-assignable globally)", | 20 "Test fails if called (Ctrl+Shift+A not auto-assignable globally)", |
21 "global": true | 21 "global": true |
22 }, | 22 }, |
23 "Ctrl-Shift-9-Valid-Global-Shortcut": { | 23 "Ctrl-Shift-8-Valid-Global-Shortcut": { |
24 "suggested_key": { | 24 "suggested_key": { |
25 "default": "Ctrl+Shift+9" | 25 "default": "Ctrl+Shift+8" |
26 }, | 26 }, |
27 "description": "Test passes if called (global shortcut)", | 27 "description": "Test passes if called (global shortcut)", |
28 "global": true | 28 "global": true |
29 } | 29 } |
30 } | 30 } |
31 } | 31 } |
OLD | NEW |