{
"name": "app_background_page/two_pages",
"version": "0.1",
"manifest_version": 2,
"description": "Tests that opening a second background page in concert with a manifest-provided page results in the manifest page being closed.",
"background": {
"page": "test.html"
},
"permissions": ["tabs", "http://a.com/*"],
"content_scripts": [
{
"matches": ["http://a.com/*"],
"js": ["content_script.js"],
"run_at": "document_end"
}
]
}