AliExpress CSV Export
Export data from AliExpress to .csv file.
Was ist AliExpress CSV Export?
AliExpress CSV Export ist eine Chrome-Erweiterung, die von https://toriox.dev entwickelt wurde, und ihr Hauptmerkmal ist "Export data from AliExpress to .csv file.".
Erweiterungsscreenshots
AliExpress CSV Export-Erweiterungs-CRX-Datei herunterladen
Laden Sie AliExpress CSV Export-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
-> Exports product details(image src, title, price/price range, shipping cost, etc) and categories(category names) from AliExpress.com to .csv file. -> Export orders from your order list to csv.
Grundlegende Informationen zur Erweiterung
Name | AliExpress CSV Export |
ID | odcddcaphojmekhiocnhbckfibpgkdfj |
Offizielle URL | https://chromewebstore.google.com/detail/aliexpress-csv-export/odcddcaphojmekhiocnhbckfibpgkdfj |
Beschreibung | Export data from AliExpress to .csv file. |
Dateigröße | 1001 KB |
Installationsanzahl | 4,457 |
Aktuelle Version | 0.2.9.3 |
Letztes Update | 2023-08-26 |
Veröffentlichungsdatum | 2020-05-28 |
Bewertung | 3.00/5 Insgesamt 22 Bewertungen |
Entwickler | https://toriox.dev |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | https://www.toriox.dev/privacy-policy.php |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AliExpress CSV Export", "version": "0.2.9.3", "manifest_version": 2, "description": "Export data from AliExpress to .csv file.", "author": "Mladen Markovic", "background": { "scripts": [ ".\/vendor\/jquery.min.js", ".\/components\/basicVariables.js", "background.js" ], "persistent": true }, "icons": { "16": ".\/assets\/logo\/icon16.png", "32": ".\/assets\/logo\/icon32.png", "48": ".\/assets\/logo\/icon48.png", "64": ".\/assets\/logo\/icon64.png", "128": ".\/assets\/logo\/icon128.png" }, "browser_action": { "default_title": "AliExpress CSV Export", "default_icon": ".\/assets\/logo\/icon128.png", "default_popup": "popup.html", "scripts": "popup.js" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "content_scripts": [ { "js": [ ".\/vendor\/jquery.min.js", ".\/components\/basicVariables.js", ".\/components\/alertMessages.js", ".\/components\/aff.js", ".\/components\/basic.js", ".\/components\/refund.js", ".\/components\/ordersPage.js", ".\/components\/orderDetailPage.js", ".\/components\/orderLogisticsPage.js" ], "matches": [ "*:\/\/*.aliexpress.com\/*", "*:\/\/*.aliexpress.ru\/*", "*:\/\/*.aliexpress.us\/*" ] } ], "web_accessible_resources": [ "\/*.png", "\/*.gif", "\/options.html", ".\/popup.html", "*.*" ], "permissions": [ "storage" ], "optional_permissions": [ "*:\/\/*.aliexpress.us\/*" ] } |