Reviews Exporter For Amazon

Reviews Exporter For Amazon

Export data from Amazon

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "short_name": "short_name",
  "version": "1.0.2",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png",
    "128": "icons/icon-128.png"
  },
  "content_security_policy": {
    "extensions_pages": "script-src 'self'; object-src 'self'"
  },
  "permissions": [
    "downloads",
    "storage",
    "activeTab"
  ],
  "options_ui": {
    "page": "index.html?route=options",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "index.html?route=popup"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "index.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}