Amazon Reviews Exporter | CSV & Images

App description

Amazon Reviews Exporter | CSV & Images란 무엇입니까?

Amazon Reviews Exporter | CSV & Images은(는) MXNPro에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "App description"입니다.

확장 프로그램 스크린샷

screenshot

Amazon Reviews Exporter | CSV & Images 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Export Amazon product reviews to CSV format.

▬▬▬▬ GETTING STARTED ▬▬▬▬▬

1. Install the extension by clicking the “Add to chrome” button.
2. Open an Amazon product page.
3. Open the extension and start downloading !

▬▬▬▬▬ FEATURES ▬▬▬▬▬

FREE version:
- Download product reviews to CSV

PRO version:
- Unlimited review downloads
- Download reviews images
- Sort by most recent
- Filter by keywords
- Filter by stars rating
- All reviews filters                    

확장 프로그램 기본 정보

이름 Amazon Reviews Exporter | CSV & Images Amazon Reviews Exporter | CSV & Images
ID njlppnciolcibljfdobcefcngiampidm
공식 URL https://chromewebstore.google.com/detail/amazon-reviews-exporter-c/njlppnciolcibljfdobcefcngiampidm
설명 App description
파일 크기 119 KB
설치 횟수 4,639
현재 버전 2.1.2
최근 업데이트 2023-12-11
출시 날짜 2020-01-09
평점 3.18/5 총 22 개의 평점
개발자 MXNPro
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://mxnpro.ovh/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "version": "2.1.2",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "icons": {
        "16": "public\/icons\/icon-16.png",
        "48": "public\/icons\/icon-48.png",
        "96": "public\/icons\/icon-96.png",
        "128": "public\/icons\/icon-128.png"
    },
    "content_security_policy": {
        "extensions_pages": "script-src 'self'; object-src 'self'"
    },
    "permissions": [
        "downloads",
        "storage",
        "activeTab"
    ],
    "host_permissions": [],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/amazon.eg\/*",
                "*:\/\/amazon.com.br\/*",
                "*:\/\/amazon.ca\/*",
                "*:\/\/amazon.com.mx\/*",
                "*:\/\/amazon.com\/*",
                "*:\/\/amazon.cn\/*",
                "*:\/\/amazon.in\/*",
                "*:\/\/amazon.co.jp\/*",
                "*:\/\/amazon.sa\/*",
                "*:\/\/amazon.sg\/*",
                "*:\/\/amazon.com.tr\/*",
                "*:\/\/amazon.ae\/*",
                "*:\/\/amazon.com.be\/*",
                "*:\/\/amazon.fr\/*",
                "*:\/\/amazon.de\/*",
                "*:\/\/amazon.it\/*",
                "*:\/\/amazon.nl\/*",
                "*:\/\/amazon.pl\/*",
                "*:\/\/amazon.es\/*",
                "*:\/\/amazon.se\/*",
                "*:\/\/amazon.co.uk\/*",
                "*:\/\/amazon.com.au\/*"
            ],
            "js": [
                "content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/amzrd.account.mxnpro.ovh\/*"
            ],
            "js": [
                "account.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/amazon-reviews-exporter.mxnpro.ovh\/*"
            ],
            "js": [
                "updatev2.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/public\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}