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": "Web Page Screenshot for Chrome",
"version": "1.0.0",
"description": "Use this extension to capture full page, current view & capture selected area of any webpage. ",
"action": {
"default_title": "Web Page Screenshot for Chrome",
"default_popup": "popup.html",
"default_icon": {
"32": "icon32.png",
"64": "icon64.png",
"128": "icon128.png"
}
},
"icons": {
"32": "icon32.png",
"64": "icon64.png",
"128": "icon128.png"
},
"host_permissions": [
"*:\/\/*\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
}
],
"permissions": [
"activeTab",
"downloads"
]
}