Index: chrome/test/data/extensions/api_test/app_background_page/two_pages/manifest.json |
diff --git a/chrome/test/data/extensions/api_test/app_background_page/two_pages/manifest.json b/chrome/test/data/extensions/api_test/app_background_page/two_pages/manifest.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8748595ab67574560f48017bbef82d929c250444 |
--- /dev/null |
+++ b/chrome/test/data/extensions/api_test/app_background_page/two_pages/manifest.json |
@@ -0,0 +1,14 @@ |
+{ |
+ "name": "app_background_page/two_pages", |
+ "version": "0.1", |
+ "description": "Tests that opening a second background page results in the first one 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" |
+ } |
+ ] |
+} |