Index: chrome/test/data/extensions/api_test/content_scripts/about_blank_iframes/manifest.json |
diff --git a/chrome/test/data/extensions/api_test/content_scripts/about_blank_iframes/manifest.json b/chrome/test/data/extensions/api_test/content_scripts/about_blank_iframes/manifest.json |
index b591cb21a3d66f52f6d7a300664e480c4d42d4f0..5f33dcd90d7529141ec4a9e1aed40f8957d40b3e 100644 |
--- a/chrome/test/data/extensions/api_test/content_scripts/about_blank_iframes/manifest.json |
+++ b/chrome/test/data/extensions/api_test/content_scripts/about_blank_iframes/manifest.json |
@@ -9,7 +9,9 @@ |
"permissions": ["tabs"], |
"content_scripts": [ |
{ |
+ "run_at": "document_end", |
"matches": ["http://*/*"], |
+ "exclude_matches": ["http://*/*test_file_with_javascript_url*"], |
"js": ["content_script.js"], |
"all_frames": true |
}, |
@@ -19,6 +21,20 @@ |
"match_about_blank": true, |
"js": ["content_script2.js"], |
"all_frames": true |
+ }, |
+ { |
+ "run_at": "document_start", |
+ "matches": ["http://*/*test_file_with_javascript_url*"], |
+ "match_about_blank": true, |
+ "js": ["start.js"], |
+ "all_frames": true |
+ }, |
+ { |
+ "run_at": "document_end", |
+ "matches": ["http://*/*test_file_with_javascript_url*"], |
+ "match_about_blank": true, |
+ "js": ["end.js"], |
+ "all_frames": true |
} |
] |
} |