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": "Temari: Temu Image and Video Scraper",
"version": "1.1.8",
"description": "Extract images, videos, and product data from Temu product listings for research purposes",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"options_page": "options.html",
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.temu.com\/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"storage",
"tabs",
"downloads"
],
"host_permissions": [
"*:\/\/*.temu.com\/*",
"*:\/\/*.temu-media.com\/*"
]
}