Amazon Reviews Exporter | CSV & Images

App description

Was ist Amazon Reviews Exporter | CSV & Images?

Amazon Reviews Exporter | CSV & Images ist eine Chrome-Erweiterung, die von MXNPro entwickelt wurde, und ihr Hauptmerkmal ist "App description".

Erweiterungsscreenshots

screenshot

Amazon Reviews Exporter | CSV & Images-Erweiterungs-CRX-Datei herunterladen

Laden Sie Amazon Reviews Exporter | CSV & Images-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Export Amazon product reviews to CSV format.

▬▬▬▬ GETTING STARTED ▬▬▬▬▬

1. Install the extension by clicking the “Add to chrome” button.
2. Open an Amazon product page.
3. Open the extension and start downloading !

▬▬▬▬▬ FEATURES ▬▬▬▬▬

FREE version:
- Download product reviews to CSV

PRO version:
- Unlimited review downloads
- Download reviews images
- Sort by most recent
- Filter by keywords
- Filter by stars rating
- All reviews filters                    

Grundlegende Informationen zur Erweiterung

Name Amazon Reviews Exporter | CSV & Images Amazon Reviews Exporter | CSV & Images
ID njlppnciolcibljfdobcefcngiampidm
Offizielle URL https://chromewebstore.google.com/detail/amazon-reviews-exporter-c/njlppnciolcibljfdobcefcngiampidm
Beschreibung App description
Dateigröße 119 KB
Installationsanzahl 4,639
Aktuelle Version 2.1.2
Letztes Update 2023-12-11
Veröffentlichungsdatum 2020-01-09
Bewertung 3.18/5 Insgesamt 22 Bewertungen
Entwickler MXNPro
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://mxnpro.ovh/privacy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "version": "2.1.2",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "icons": {
        "16": "public\/icons\/icon-16.png",
        "48": "public\/icons\/icon-48.png",
        "96": "public\/icons\/icon-96.png",
        "128": "public\/icons\/icon-128.png"
    },
    "content_security_policy": {
        "extensions_pages": "script-src 'self'; object-src 'self'"
    },
    "permissions": [
        "downloads",
        "storage",
        "activeTab"
    ],
    "host_permissions": [],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/amazon.eg\/*",
                "*:\/\/amazon.com.br\/*",
                "*:\/\/amazon.ca\/*",
                "*:\/\/amazon.com.mx\/*",
                "*:\/\/amazon.com\/*",
                "*:\/\/amazon.cn\/*",
                "*:\/\/amazon.in\/*",
                "*:\/\/amazon.co.jp\/*",
                "*:\/\/amazon.sa\/*",
                "*:\/\/amazon.sg\/*",
                "*:\/\/amazon.com.tr\/*",
                "*:\/\/amazon.ae\/*",
                "*:\/\/amazon.com.be\/*",
                "*:\/\/amazon.fr\/*",
                "*:\/\/amazon.de\/*",
                "*:\/\/amazon.it\/*",
                "*:\/\/amazon.nl\/*",
                "*:\/\/amazon.pl\/*",
                "*:\/\/amazon.es\/*",
                "*:\/\/amazon.se\/*",
                "*:\/\/amazon.co.uk\/*",
                "*:\/\/amazon.com.au\/*"
            ],
            "js": [
                "content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/amzrd.account.mxnpro.ovh\/*"
            ],
            "js": [
                "account.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/amazon-reviews-exporter.mxnpro.ovh\/*"
            ],
            "js": [
                "updatev2.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/public\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}