| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "about:blank iframes", | 2 "name": "about:blank iframes", |
| 3 "version": "1.0", | 3 "version": "1.0", |
| 4 "manifest_version": 2, | 4 "manifest_version": 2, |
| 5 "description": "Tests that content scripts are not injected into about:blank i
frames, even after document.write().", | 5 "description": "Tests that content scripts are not injected into about:blank i
frames, even after document.write().", |
| 6 "background": { | 6 "background": { |
| 7 "page": "test.html" | 7 "page": "test.html" |
| 8 }, | 8 }, |
| 9 "permissions": ["tabs"], | 9 "permissions": ["tabs"], |
| 10 "content_scripts": [ | 10 "content_scripts": [ |
| 11 { | 11 { |
| 12 "matches": ["http://*/*"], | 12 "matches": ["http://*/*"], |
| 13 "js": ["content_script.js"], | 13 "js": ["content_script.js"], |
| 14 "all_frames": true | 14 "all_frames": true |
| 15 }, |
| 16 { |
| 17 "run_at": "document_start", |
| 18 "matches": ["http://does-not-match/"], |
| 19 "match_about_blank": true, |
| 20 "js": ["content_script2.js"], |
| 21 "all_frames": true |
| 15 } | 22 } |
| 16 ] | 23 ] |
| 17 } | 24 } |
| OLD | NEW |