| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "Simple e2e", | 2 "name": "Simple e2e", |
| 3 "description": "A simple e2e test for native bindings", | 3 "description": "A simple e2e test for native bindings", |
| 4 "manifest_version": 2, | 4 "manifest_version": 2, |
| 5 "version": "0.1", | 5 "version": "0.1", |
| 6 "permissions": ["idle"], | 6 "permissions": ["idle", "tabs"], |
| 7 "background": { | 7 "background": { |
| 8 "persistent": false, | 8 "persistent": false, |
| 9 "page": "background.html" | 9 "page": "background.html" |
| 10 } | 10 }, |
| 11 "content_scripts": [{ |
| 12 "matches": ["*://*/*messaging_test.html"], |
| 13 "js": ["content_script.js"] |
| 14 }] |
| 11 } | 15 } |
| OLD | NEW |