AliExpress CSV Export
Export data from AliExpress to .csv file.
What is AliExpress CSV Export?
AliExpress CSV Export is a Chrome extension developed by https://toriox.dev, and its main feature is "Export data from AliExpress to .csv file.".
Extension Screenshots
Download AliExpress CSV Export Extension CRX File
Download AliExpress CSV Export extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
-> 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.
Extension Basic Information
Name | AliExpress CSV Export |
ID | odcddcaphojmekhiocnhbckfibpgkdfj |
Official URL | https://chromewebstore.google.com/detail/aliexpress-csv-export/odcddcaphojmekhiocnhbckfibpgkdfj |
Description | Export data from AliExpress to .csv file. |
File Size | 1001 KB |
Installation Count | 4,457 |
Current Version | 0.2.9.3 |
Last Updated | 2023-08-26 |
Publish Date | 2020-05-28 |
Rating | 3.00/5 Total 22 Ratings |
Developer | https://toriox.dev |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://www.toriox.dev/privacy-policy.php |
Supported Languages | 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\/*" ] } |