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": "Curly Screenshot Tool", "description": "Take screenshots of web pages in one click. Full page or visible area only.", "author": "Curly Doggo Limited", "homepage_url": "https:\/\/chernikov.xyz\/curly-screenshot-tool", "version": "1.0", "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" } }