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