Shopify Product Extractor

Shopify Product Extractor

With the Shopify Product Extractor Chrome extension, listings with Product Name, image, and URL are automatically downloaded to CSV.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Shopify Product Extractor",
  "version": "2.2",
  "description": "With the Shopify Product Extractor Chrome extension, listings with Product Name, image, and URL are automatically downloaded to CSV.",
  "permissions": [
    "activeTab"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}