| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "content_script_extension_process", | 2 "name": "content_script_extension_process", |
| 3 "version": "1.0", | 3 "version": "1.0", |
| 4 "manifest_version": 2, |
| 4 "description": "Content scripts should get injected into web pages, even when
the webpages are in an extension process.", | 5 "description": "Content scripts should get injected into web pages, even when
the webpages are in an extension process.", |
| 5 "background_page": "background.html", | 6 "background_page": "background.html", |
| 6 "content_scripts": [ | 7 "content_scripts": [ |
| 7 { | 8 { |
| 8 "matches": ["http://*/*"], | 9 "matches": ["http://*/*"], |
| 9 "js": ["injectionator.js"], | 10 "js": ["injectionator.js"], |
| 10 "all_frames": true | 11 "all_frames": true |
| 11 } | 12 } |
| 12 ] | 13 ] |
| 13 } | 14 } |
| OLD | NEW |