Amazon Review Export New V3

Amazon Review Export New V3

This is a simple and reliable tool for exporting product reviews from Amazon and downloading them into a .csv file.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Amazon Review Export New V3",
  "version": "2.4.5",
  "description": "This is a simple and reliable tool for exporting product reviews from Amazon and downloading them into a .csv file.",
  "author": "Asif Iqbal",
  "icons": {
    "128": "/img/logo_128.png",
    "256": "/img/logo_256.png",
    "512": "/img/logo_512.png"
  },
  "action": {
    "default_icon": "/img/logo_128.png",
    "default_popup": "/pages/popup/index.html"
  },
  "background": {
    "service_worker": "/js/background/main.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.amazon.com/*",
        "https://www.amazon.ca/*",
        "https://www.amazon.com.mx/*",
        "https://www.amazon.co.uk/*",
        "https://www.amazon.de/*",
        "https://www.amazon.it/*",
        "https://www.amazon.es/*",
        "https://www.amazon.nl/*",
        "https://www.amazon.co.jp/*",
        "https://www.amazon.sg/*",
        "https://www.amazon.ae/*",
        "https://www.amazon.com.br/*",
        "https://www.amazon.com.au/*",
        "https://www.amazon.in/*",
        "https://www.amazon.sa/*",
        "https://www.amazon.pl/*",
        "https://www.ebay.com/*"
      ],
      "js": [
        "/lib/jquery.min.js",
        "/lib/moment.min.js",
        "/lib/webx.js",
        "/lib/papaparse.min.js",
        "/js/content_script/controller.js",
        "/js/content_script/observer.js",
        "/js/content_script/overlay_manager.js",
        "/js/content_script/main.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "http://localhost:5000/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}