35 lines
641 B
JSON
35 lines
641 B
JSON
{
|
|
"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": [
|
|
"<all_urls>"
|
|
],
|
|
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_title": "Download Yupoo Products"
|
|
},
|
|
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"],
|
|
"run_at": "document_end"
|
|
}
|
|
]
|
|
}
|