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 "content_scripts": [ | |
10 { | |
11 "matches": [ "<all_urls>" ], | |
12 "js": ["injected.js"] | |
13 } | |
14 ], | |
15 "commands": { | |
16 "CtrlShiftD": { | |
Finnur
2014/08/28 11:15:39
CtrlShiftD?
David Tseng
2014/08/28 23:37:11
Earlier keystroke I used which for some reason, do
| |
17 "description": "Test propagation of this key", | |
18 "suggested_key": { | |
19 "default": "Ctrl+Shift+F" | |
20 } | |
21 } | |
22 } | |
23 } | |
OLD | NEW |