OLD | NEW |
1 { | 1 { |
2 "name": "An extension that tries to overwrite system keybindings", | 2 "name": "An extension that tries to overwrite system keybindings", |
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 "permissions": ["activeTab"], | 8 "permissions": ["activeTab"], |
9 "commands": { | 9 "commands": { |
10 "red": { | 10 "ctrl_f": { |
11 "suggested_key": "Ctrl+F", | 11 "suggested_key": "Ctrl+F", |
12 "description": "Make the page red" | 12 "description": "Send a ctrl f test message" |
13 }, | 13 }, |
14 "green": { | 14 "ctrl_d": { |
15 "suggested_key": "Ctrl+D", | 15 "suggested_key": "Ctrl+D", |
16 "description": "Make the page green" | 16 "description": "Send a ctrl d test message" |
17 }, | 17 }, |
18 "blue": { | 18 "alt_shift_f": { |
19 "suggested_key": "Alt+Shift+F", | 19 "suggested_key": "Alt+Shift+F", |
20 "description": "Make the page blue" | 20 "description": "Send a ctrl shift f test message" |
21 } | 21 } |
22 } | 22 } |
23 } | 23 } |
OLD | NEW |