Amazon Harvest - Collect Sellers

Amazon Harvest - Collect Sellers

Collects all sellers and prices for Amazon products.

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 Harvest - Collect Sellers",
  "description": "Collects all sellers and prices for Amazon products.",
  "version": "1.0.2",
  "page_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "backgroundscript.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.amazon.com/gp/offer-listing/*",
        "https://www.amazon.com/gp/offer-listing/*",
        "http://smile.amazon.com/gp/offer-listing/*",
        "https://smile.amazon.com/gp/offer-listing/*",
        "https://www.amazon.ca/gp/offer-listing/*",
        "http://www.amazon.de/gp/offer-listing/*",
        "https://www.amazon.de/gp/offer-listing/*",
        "http://www.amazon.it/gp/offer-listing/*",
        "https://www.amazon.it/gp/offer-listing/*",
        "https://www.amazon.fr/gp/offer-listing/*",
        "https://www.amazon.es/gp/offer-listing/*",
        "https://www.amazon.co.uk/gp/offer-listing/*"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "clipboardWrite"
  ]
}