AliExpress Reviews Exporter | CSV & Images
Download AliExpress product reviews to your computer. Export comments, ratings and images.
AliExpress Reviews Exporter | CSV & Images란 무엇입니까?
AliExpress Reviews Exporter | CSV & Images은(는) https://mxnpro.ovh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download AliExpress product reviews to your computer. Export comments, ratings and images."입니다.
확장 프로그램 스크린샷
AliExpress Reviews Exporter | CSV & Images 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | AliExpress Reviews Exporter | CSV & Images |
ID | glnajkhggmbljlcafknlkcihcheoankc |
공식 URL | https://chromewebstore.google.com/detail/aliexpress-reviews-export/glnajkhggmbljlcafknlkcihcheoankc |
설명 | Download AliExpress product reviews to your computer. Export comments, ratings and images. |
파일 크기 | 330 KB |
설치 횟수 | 3,169 |
현재 버전 | 1.1.4 |
최근 업데이트 | 2023-02-03 |
출시 날짜 | 2020-04-06 |
평점 | 2.00/5 총 10 개의 평점 |
개발자 | https://mxnpro.ovh |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.mxnpro.ovh/ |
개인정보 보호 정책 페이지 URL | https://mxnpro.ovh/privacy |
지원되는 언어 | 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" } } |