OLD | NEW |
1 { | 1 { |
2 "name": "Lazy BG messaging test", | 2 "name": "Lazy BG messaging test", |
3 "description": "Test that message passing starts the background page", | 3 "description": "Test that message passing starts the background page", |
4 "version": "1", | 4 "version": "1", |
5 "manifest_version": 2, | 5 "manifest_version": 2, |
6 "permissions": ["experimental"], | |
7 "background": { | 6 "background": { |
8 "scripts": ["background.js"], | 7 "scripts": ["background.js"], |
9 "persistent": false | 8 "persistent": false |
10 }, | 9 }, |
11 "content_scripts": [ | 10 "content_scripts": [ |
12 { | 11 { |
13 "matches": ["http://*/*"], | 12 "matches": ["http://*/*"], |
14 "js": ["content.js"] | 13 "js": ["content.js"] |
15 } | 14 } |
16 ] | 15 ] |
17 } | 16 } |
OLD | NEW |