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 "manifest_version": 2, |
5 "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.", |
6 "permissions": ["http://*/*", "https://*/*"], | 6 "permissions": ["http://*/*", "https://*/*"], |
7 "content_scripts": [ | 7 "content_scripts": [ |
8 { | 8 { |
9 "matches": ["http://*/*", "https://*/*"], | 9 "matches": ["http://*/*", "https://*/*"], |
10 "js": ["change_page_title.js"], | 10 "js": ["change_page_title.js"], |
11 "run_at": "document_start" | 11 "run_at": "document_end" |
12 } | 12 } |
13 ] | 13 ] |
14 } | 14 } |
OLD | NEW |