Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Full Screen Screenshot",
"version": "1.0",
"description": "An extension to take full-page screenshots of web pages.",
"permissions": [
"activeTab",
"tabs",
"downloads",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "src\/background.js",
"type": "module"
},
"action": {
"default_popup": "src\/popup.html",
"default_icon": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src\/content.js"
]
}
],
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"commands": {
"capture-screenshot": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "Command+Shift+S"
},
"description": "Capture a full page screenshot"
}
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}