| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "Active Script Test: Content Scripts Explicit Hosts", | 2 "name": "Active Script Test: Content Scripts Explicit Hosts", |
| 3 "description": "An extension with explicit hosts that has a content script.", | 3 "description": "An extension with explicit hosts that has a content script.", |
| 4 "version": "2.0", | 4 "version": "2.0", |
| 5 "content_scripts": [ | 5 "content_scripts": [ |
| 6 { | 6 { |
| 7 "matches": ["http://127.0.0.1/*"], | 7 "matches": ["http://127.0.0.1/*"], |
| 8 "js": ["content_script.js"] | 8 "js": ["content_script.js"], |
| 9 "run_at": "document_start" |
| 9 } | 10 } |
| 10 ], | 11 ], |
| 11 "manifest_version": 2 | 12 "manifest_version": 2 |
| 12 } | 13 } |
| OLD | NEW |