Amazon Seller Product Scraper

Amazon Seller Product Scraper

This extension helps to create product CSV from Amazon Seller Panel.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Amazon Seller Product Scraper",
  "description": "This extension helps to create product CSV from Amazon Seller Panel.",
  "version": "1.0.2",
  "browser_action": {
    "default_icon": "images/logo.png",
    "default_title": "Amazon Seller Product Scraper",
    "default_popup": "html/action.html"
  },
  "permissions": [
    "unlimitedStorage",
    "downloads",
    "activeTab",
    "storage",
    "notifications",
    "tabs",
    "cookies",
    "http://localhost/*",
    "http://*/*",
    "https://*/*"
  ],
  "short_name": "Product Helper",
  "author": "CEDCommerce",
  "background": {
    "page": "html/bana.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.sellercentral.amazon.com/inventory/*"
      ],
      "js": [
        "content-script/jquery-3.2.1.min.js",
        "content-script/import.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ]
}