screenshot-chrome-extension/manifest.json
Joey Yakimowich-Payne a112f61c05 Make shortcut work
2025-08-09 12:31:51 -06:00

52 lines
No EOL
1.1 KiB
JSON

{
"manifest_version": 3,
"name": "Full Screenshot Selector",
"version": "1.0",
"description": "Visually select and capture full screenshots of any element, including hidden scrollable content",
"permissions": [
"activeTab",
"tabs",
"storage"
],
"action": {
"default_popup": "popup.html",
"default_title": "Full Screenshot Selector",
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["html2canvas-pro.min.js", "content.js"],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "background.js"
},
"commands": {
"activate-selector": {
"suggested_key": {
"default": "Alt+Shift+S",
"mac": "Alt+Shift+S"
},
"description": "Activate screenshot selector"
}
},
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}