OLD | NEW |
1 { | 1 { |
2 "background": { | 2 "background": { |
3 "scripts": ["background.js"] | 3 "scripts": ["background.js"] |
4 }, | 4 }, |
5 "content_scripts": [ { | 5 "content_scripts": [ { |
6 "js": [ "content_script.js" ], | 6 "js": [ "content_script.js" ], |
7 "matches": [ "<all_urls>" ] | 7 "matches": [ "<all_urls>" ] |
8 } ], | 8 } ], |
| 9 "permissions": [ "tabs" ], |
9 "description": "Test whether whitelisted extensions can run scripts everywher
e using content script", | 10 "description": "Test whether whitelisted extensions can run scripts everywher
e using content script", |
10 "name": "AllUrls content script permissions", | 11 "name": "AllUrls content script permissions", |
11 "manifest_version": 2, | 12 "manifest_version": 2, |
12 "version": "1.0" | 13 "version": "1.0" |
13 } | 14 } |
OLD | NEW |