Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Captureo: Full Webpage Screenshots for Chrome",
"short_name": "Captureo",
"description": "Take screenshots of web pages in one click. Full page or visible area.",
"author": "Curly Doggo Limited",
"homepage_url": "https:\/\/curlydoggo.com\/curly-screenshot-tool",
"version": "1.0.3",
"permissions": [
"activeTab",
"storage",
"unlimitedStorage"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"captureFullPage.js"
],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/icon128.png",
"48": "images\/icon128.png",
"128": "images\/icon128.png"
}
},
"icons": {
"16": "images\/icon128.png",
"48": "images\/icon128.png",
"128": "images\/icon128.png"
}
}