OLD | NEW |
1 { | 1 { |
2 "name": "Active Script Test: Content Scripts All Hosts", | 2 "name": "Active Script Test: Content Scripts All Hosts", |
3 "description": "An extension with all hosts that has a content script.", | 3 "description": "An extension with all hosts that has a content script.", |
4 "version": "2.0", | 4 "version": "2.0", |
5 "content_scripts": [ | 5 "content_scripts": [ |
6 { | 6 { |
7 "matches": ["*://*/*"], | 7 "matches": ["*://*/*"], |
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 |