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