AliExpress Reviews Exporter | CSV & Images
Download AliExpress product reviews to your computer. Export comments, ratings and images.
Was ist AliExpress Reviews Exporter | CSV & Images?
AliExpress Reviews Exporter | CSV & Images ist eine Chrome-Erweiterung, die von https://mxnpro.ovh entwickelt wurde, und ihr Hauptmerkmal ist "Download AliExpress product reviews to your computer. Export comments, ratings and images.".
Erweiterungsscreenshots
AliExpress Reviews Exporter | CSV & Images-Erweiterungs-CRX-Datei herunterladen
Laden Sie AliExpress 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 AliExpress product reviews to CSV format. ▬▬▬▬ GETTING STARTED ▬▬▬▬▬ 1. Install the extension by clicking the “Add to chrome” button. 2. Open an AliExpress product page. 3. Open the extension and start downloading ! ▬▬▬▬▬ FEATURES ▬▬▬▬▬ FREE version: - Download product reviews to CSV PRO version: - Unlimited review downloads - Download review images - Filter by stars rating - Translate comments - Other filters
Grundlegende Informationen zur Erweiterung
Name | AliExpress Reviews Exporter | CSV & Images |
ID | glnajkhggmbljlcafknlkcihcheoankc |
Offizielle URL | https://chromewebstore.google.com/detail/aliexpress-reviews-export/glnajkhggmbljlcafknlkcihcheoankc |
Beschreibung | Download AliExpress product reviews to your computer. Export comments, ratings and images. |
Dateigröße | 330 KB |
Installationsanzahl | 3,169 |
Aktuelle Version | 1.1.4 |
Letztes Update | 2023-02-03 |
Veröffentlichungsdatum | 2020-04-06 |
Bewertung | 2.00/5 Insgesamt 10 Bewertungen |
Entwickler | https://mxnpro.ovh |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.mxnpro.ovh/ |
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": 2, "name": "AliExpress Reviews Exporter | CSV & Images", "short_name": "AliExpress Reviews Exporter", "version": "1.1.4", "description": "Download AliExpress product reviews to your computer. Export comments, ratings and images.", "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "96": "icons\/icon-96.png", "128": "icons\/icon-128.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "storage", "activeTab", "downloads", "webRequest", "webRequestBlocking", "https:\/\/*.alicdn.com\/*", "https:\/\/*.aliexpress.com\/item\/*", "https:\/\/*.aliexpress.com\/store\/product\/*", "https:\/\/*.aliexpress.com\/i\/*", "https:\/\/*.aliexpress.us\/item\/*", "https:\/\/*.aliexpress.us\/store\/product\/*", "https:\/\/*.aliexpress.us\/i\/*", "https:\/\/*.aliexpress.ru\/item\/*", "https:\/\/*.aliexpress.ru\/store\/product\/*", "https:\/\/*.aliexpress.ru\/i\/*" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "run_at": "document_idle", "matches": [ "https:\/\/aliexpress-reviews-exporter.mxnpro.ovh\/*" ], "js": [ "checkout.js" ] } ], "browser_action": { "default_popup": "popup.html" } } |