AliExpress CSV Export
Export data from AliExpress to .csv file.
AliExpress CSV Export란 무엇입니까?
AliExpress CSV Export은(는) https://toriox.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Export data from AliExpress to .csv file."입니다.
확장 프로그램 스크린샷
AliExpress CSV Export 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
-> 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.
확장 프로그램 기본 정보
이름 | AliExpress CSV Export |
ID | odcddcaphojmekhiocnhbckfibpgkdfj |
공식 URL | https://chromewebstore.google.com/detail/aliexpress-csv-export/odcddcaphojmekhiocnhbckfibpgkdfj |
설명 | Export data from AliExpress to .csv file. |
파일 크기 | 1001 KB |
설치 횟수 | 4,457 |
현재 버전 | 0.2.9.3 |
최근 업데이트 | 2023-08-26 |
출시 날짜 | 2020-05-28 |
평점 | 3.00/5 총 22 개의 평점 |
개발자 | https://toriox.dev |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://www.toriox.dev/privacy-policy.php |
지원되는 언어 | 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\/*" ] } |