OLD | NEW |
---|---|
(Empty) | |
1 { | |
2 "name": "A test for checking that user keybings persist after update", | |
Finnur
2014/10/22 09:43:03
This name is a bit weird. I'd go with:
A test for
| |
3 "version": "1.0", | |
4 "manifest_version": 2, | |
5 "background": { | |
6 "scripts": ["background.js"] | |
7 }, | |
8 "permissions": ["activeTab"], | |
9 "commands": { | |
10 "test_mediakeys_update": { | |
11 "suggested_key": { | |
12 "default": "MediaPlayPause" | |
13 }, | |
14 "description": "Test for mediakeys update overwrite", | |
15 "global": true | |
16 } | |
17 } | |
18 } | |
OLD | NEW |