Extension guide

Amazon Scraper Chrome Extension Docs.

Install the extension, scan one open Amazon page and move clean rows into CSV, JSON or a larger ParseShelf workflow.

Output previewAmazon product record · 12 fields shown
ProductAvailabilityPrice
La Roche-Posay Cicaplast Balm B5 CreamB0060OUV5Y · 4.7 · 20,743 reviews
In stock$18.99
Maybelline Sky High MascaraB08H3JPH74 · 4.5 · 181,639 reviews
In stock$10.82
Aquaphor Healing OintmentB0107QPFBU · 4.8 · 138,730 reviews
In stock$12.79
Dove Sensitive Skin Body WashB00SK71SAG · 4.8 · 62,276 reviews
In stock$10.97
{
  "status": "succeeded",
  "marketplace": "amazon",
  "input_type": "product_url_list",
  "mode": "full_product",
  "delivered_records": 1,
  "charged_units": 5,
  "sample": {
    "product_id": "B0060OUV5Y",
    "title": "La Roche-Posay Cicaplast Balm B5 Cream",
    "brand": "La Roche-Posay",
    "price": 18.99,
    "currency": "USD",
    "ASIN": "available when Amazon renders this field",
    "rating": 4.7,
    "reviews_count": 20743,
    "stock": "In Stock",
    "images": [
      "https://m.media-amazon.com/images/I/713Ca5aXpyL._SL1500_.jpg"
    ],
    "category_path": [
      "Beauty & Personal Care",
      "Skin Care",
      "Face",
      "Creams"
    ],
    "product_url": "https://www.amazon.com/dp/B0060OUV5Y"
  },
  "exports": {
    "jsonl": "/api/v1/jobs/{job_id}/download/jsonl",
    "csv": "/api/v1/jobs/{job_id}/download/csv",
    "xlsx": "/api/v1/jobs/{job_id}/download/xlsx",
    "md": "/api/v1/jobs/{job_id}/download/md"
  }
}
curl -X POST https://parseshelf.com/api/v1/jobs \
  -H 'Authorization: Bearer $PARSESHELF_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"marketplace":"amazon","input_type":"product_url_list","input_value":"https://www.amazon.com/dp/B0060OUV5Y","mode":"full_product","target_count":20}'
Example output · only delivered rows spend unitsCSV · XLSX · JSONL · Markdown
Search intent

Terms this page answers.

Amazon scraper Chrome extension docsAmazon search to CSV extensioninstall Amazon parser extensionParseShelf Chrome extension
Guide

How to use this ParseShelf resource.

Install the extension

Download the signed release ZIP from GitHub or install the published Chrome Web Store item when available. For source installation, open chrome://extensions, enable Developer mode, choose Load unpacked and select the extension directory.

The extension requests activeTab and scripting only. It receives temporary access after you click its toolbar icon and does not keep persistent access to Amazon or other websites.

Scan and export

Open an Amazon search, category, Best Sellers or product page and let the visible page finish rendering. Click the ParseShelf icon, choose Scan current page, then download CSV or JSON or copy the deduplicated ASIN list.

The extension exports only rows present on the current rendered page. This keeps the free workflow fast, understandable and free of backend usage.

Continue in ParseShelf

Choose Continue in ParseShelf when you need more than the current page. The extension copies and locally prefills up to 20 ASINs in the sample form without putting them in the HTTP request body.

Use the hosted product for multi-page discovery, full product fields, XLSX output, scheduled jobs, proxy-backed retries and API automation.

Production checklist

Start with one small input and compare the delivered fields with the report, catalog or pipeline you actually need.

Keep the job ID, source URL, mode and run date with downstream exports so operators and developers can audit the same result.

Related pages

Continue the Amazon data workflow.

FAQ

Amazon Scraper Chrome Extension Docs questions.

Does it work on every Amazon marketplace?
The extractor supports common Amazon marketplace domains and reads layouts that expose standard search or product selectors.
Why does a page sometimes return no rows?
Amazon may still be loading or may have changed that page layout. Reload the page, wait for product cards and scan again.
Where is the source code?
The complete Manifest V3 source is published on GitHub under the MIT license.