blob: d47ce331ca88e9670a236d72bcada225eed6bda1 [file] [log] [blame]
{
"manifest_version": 2,
"name": "Screenshooter",
"description": "Take screenshots with ALL the APIs",
"version": "1.0",
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
],
"commands": {
"activeTab": {
"suggested_key": {
"default": "Ctrl+Shift+Y"
},
"description": "Enable activeTab permission for tabCapture"
}
},
"permissions": [
"desktopCapture",
"tabCapture",
"<all_urls>"
]
}