| { |
| "name": "executeScript and HTTP 204 in iframe", |
| "manifest_version": 2, |
| "version": "1", |
| "background": { |
| "scripts": ["background.js"], |
| "persistent": true |
| }, |
| "content_scripts": [{ |
| "run_at": "document_start", |
| "js": ["start_test_when_ready.js"], |
| "matches": ["*://*/*page_with_204_frame.html*"] |
| }, { |
| "run_at": "document_start", |
| "js": ["at_document_start.js"], |
| "all_frames": true, |
| "match_about_blank": true, |
| "matches": ["*://*/*page_with_204_frame.html*", "*://*/*navigate_to_204.html*"] |
| }, { |
| "run_at": "document_end", |
| "js": ["at_document_end.js"], |
| "all_frames": true, |
| "match_about_blank": true, |
| "matches": ["*://*/*page_with_204_frame.html*", "*://*/*navigate_to_204.html*"] |
| }, { |
| "run_at": "document_idle", |
| "js": ["at_document_idle.js"], |
| "all_frames": true, |
| "match_about_blank": true, |
| "matches": ["*://*/*page_with_204_frame.html*", "*://*/*navigate_to_204.html*"] |
| }, { |
| "run_at": "document_start", |
| "js": ["at_document_start_unexpected.js"], |
| "all_frames": true, |
| "match_about_blank": true, |
| "matches": ["*://*/*page204.html*"] |
| }, { |
| "run_at": "document_end", |
| "js": ["at_document_end_unexpected.js"], |
| "all_frames": true, |
| "match_about_blank": true, |
| "matches": ["*://*/*page204.html*"] |
| }, { |
| "run_at": "document_idle", |
| "js": ["at_document_idle_unexpected.js"], |
| "all_frames": true, |
| "match_about_blank": true, |
| "matches": ["*://*/*page204.html*"] |
| }], |
| "permissions": ["*://*/*", "webNavigation"] |
| } |