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": "Shopify Scraper",
"version": "1.0",
"description": "Scrape and download Shopify products\/collections",
"icons": {
"16": "assets\/logo.png",
"32": "assets\/logo.png",
"48": "assets\/logo.png",
"128": "assets\/logo.png"
},
"permissions": [
"activeTab",
"webNavigation",
"tabs",
"scripting"
],
"host_permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"background": {
"service_worker": "scripts\/background.js"
},
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "assets\/logo.png",
"32": "assets\/logo.png",
"48": "assets\/logo.png",
"128": "assets\/logo.png"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"scripts\/shopifyParser.js"
]
},
{
"matches": [
"*:\/\/app.shopify-scraper.fr\/*",
"*:\/\/shopify-scraper.fr\/*"
],
"css": [
"styles\/hideLogo.css"
],
"js": [
"scripts\/shopifyScraperEnhancer.js",
"scripts\/simpleTranslate.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"assets\/logo.png"
],
"matches": [
"*:\/\/app.shopify-scraper.fr\/*",
"*:\/\/shopify-scraper.fr\/*"
]
}
]
}