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": "Jumia Product Scraper",
"version": "1.0.1",
"description": "A Chrome extension to scrape product data from Jumia category pages and export it to CSV",
"permissions": [
"activeTab"
],
"icons": {
"16": "images\/icon-16.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/icon-16.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
}
},
"content_scripts": [
{
"matches": [
"*:\/\/www.jumia.com.ng\/*",
"*:\/\/www.jumia.co.ke\/*",
"*:\/\/www.jumia.com.eg\/*",
"*:\/\/www.jumia.co.za\/*",
"*:\/\/www.jumia.co.tz\/*",
"*:\/\/www.jumia.com.gh\/*",
"*:\/\/www.jumia.ci\/*",
"*:\/\/www.jumia.sn\/*",
"*:\/\/www.jumia.ug\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"*:\/\/www.jumia.com.ng\/*",
"*:\/\/www.jumia.co.ke\/*",
"*:\/\/www.jumia.com.eg\/*",
"*:\/\/www.jumia.co.za\/*",
"*:\/\/www.jumia.co.tz\/*",
"*:\/\/www.jumia.com.gh\/*",
"*:\/\/www.jumia.ci\/*",
"*:\/\/www.jumia.sn\/*",
"*:\/\/www.jumia.ug\/*"
],
"web_accessible_resources": [
{
"resources": [
"images\/*"
],
"matches": [
"<all_urls>"
]
}
]
}