| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "Test Screenshot Extension", | 2 "name": "Test Screenshot Extension", |
| 3 "version": "1.0", | 3 "version": "1.0", |
| 4 "description": "Demonstrate screenshot functionality in the chrome.tabs api. N
ote: only works for code.google.com", | 4 "description": "Demonstrate screenshot functionality in the chrome.tabs api. N
ote: only works for code.google.com", |
| 5 "background_page": "background.html", | 5 "background_page": "background.html", |
| 6 "browser_action": { | 6 "browser_action": { |
| 7 "default_icon": "camera.png", | 7 "default_icon": "camera.png", |
| 8 "default_title": "Take a screen shot!" | 8 "default_title": "Take a screen shot!" |
| 9 }, | 9 }, |
| 10 "permissions": ["tabs", "http://code.google.com/"] | 10 "permissions": ["tabs", "http://code.google.com/"], |
| 11 "content_security_policy": "default-src 'none'; script-src 'self'; img-src dat
a:" |
| 11 } | 12 } |
| OLD | NEW |