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": "Image Downloader", "version": "2024.10.11", "description": "Get Web Images and Download", "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "src\/pages\/content\/index.js" ] } ], "action": { "default_popup": "src\/pages\/popup\/index.html", "default_icon": "128.png" }, "icons": { "128": "128.png" }, "web_accessible_resources": [ { "resources": [ "contentStyle.css", "128.png", "48.png" ], "matches": [] } ], "permissions": [ "activeTab", "scripting", "downloads", "scripting" ] }