35 lines
621 B
JSON
35 lines
621 B
JSON
{
|
|
"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>"
|
|
]
|
|
}
|