Chromium Code Reviews| 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:" | |
|
Boris Smus
2011/10/18 21:42:06
Cool, just read about this! One concern is that th
Mike West
2011/10/19 08:39:12
I don't think that's likely (maybe I'm misundersta
| |
| 11 } | 12 } |
| OLD | NEW |