OLD | NEW |
1 { | 1 { |
2 "name": "incognito no script", | 2 "name": "incognito no script", |
3 "version": "0.1", | 3 "version": "0.1", |
| 4 "manifest_version": 2, |
4 "description": "Checks that content scripts do not inject js into incognito br
owsers.", | 5 "description": "Checks that content scripts do not inject js into incognito br
owsers.", |
5 "permissions": ["http://*/*", "https://*/*"], | 6 "permissions": ["http://*/*", "https://*/*"], |
6 "content_scripts": [ | 7 "content_scripts": [ |
7 { | 8 { |
8 "matches": ["http://*/*", "https://*/*"], | 9 "matches": ["http://*/*", "https://*/*"], |
9 "js": ["change_page_title.js"], | 10 "js": ["change_page_title.js"], |
10 "run_at": "document_start" | 11 "run_at": "document_start" |
11 } | 12 } |
12 ] | 13 ] |
13 } | 14 } |
OLD | NEW |