{ "manifest_version": 3, "name": "Yupoo Product Image Downloader", "version": "1.0.0", "description": "Download all product images from Yupoo-style gallery pages organized by product", "permissions": [ "downloads", "scripting", "activeTab", "webRequest" ], "host_permissions": [ "" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_title": "Download Yupoo Products" }, "content_scripts": [ { "matches": [""], "js": ["content.js"], "run_at": "document_end" } ] }