| 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"], | 6 "permissions": ["experimental"], |
| 7 "background": { | 7 "background": { |
| 8 "scripts": ["background.js"], | 8 "scripts": ["background.js"], |
| 9 "persistent": false | 9 "transient": true |
| 10 }, | 10 }, |
| 11 "content_scripts": [ | 11 "content_scripts": [ |
| 12 { | 12 { |
| 13 "matches": ["http://*/*"], | 13 "matches": ["http://*/*"], |
| 14 "js": ["content.js"] | 14 "js": ["content.js"] |
| 15 } | 15 } |
| 16 ] | 16 ] |
| 17 } | 17 } |
| OLD | NEW |