ETSY Reviews Downloader

Download Etsy Product Reviews Automatically!

ETSY Reviews Downloader란 무엇입니까?

ETSY Reviews Downloader은(는) etsy-review-group에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download Etsy Product Reviews Automatically!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

ETSY Reviews Downloader 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Etsy reviews request tool to export & manage product reviews!

Always wanted to export reviews from your store or download reviews from any listing? This extension grants you that ability in no time. 

Etsy Reviews Downloader also shows you all of your product reviews. The reviews are exported into a CSV file where you will be able to view the data such as name, review, Number of stars, date, etc. 

The world is your oyster and anything is possible with Etsy Reviews Downloader!                    

확장 프로그램 기본 정보

이름 ETSY Reviews Downloader ETSY Reviews Downloader
ID dniafknokcjbjibllhpiekpeignbcmkl
공식 URL https://chromewebstore.google.com/detail/etsy-reviews-downloader/dniafknokcjbjibllhpiekpeignbcmkl
설명 Download Etsy Product Reviews Automatically!
파일 크기 42.38 KB
설치 횟수 494
현재 버전 1.5
최근 업데이트 2023-02-02
출시 날짜 2022-03-14
평점 2.93/5 총 14 개의 평점
개발자 etsy-review-group
이메일 [email protected]
결제 유형 in_app
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ETSY Reviews Downloader",
    "version": "1.5",
    "description": "Download Etsy Product Reviews Automatically!",
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "16": "images\/icons\/16.png",
            "32": "images\/icons\/32.png",
            "48": "images\/icons\/48.png",
            "128": "images\/icons\/100.png"
        },
        "default_title": "ETSY Reviews Downloader",
        "default_popup": "html\/login.html"
    },
    "icons": {
        "16": "images\/icons\/16.png",
        "32": "images\/icons\/32.png",
        "48": "images\/icons\/48.png",
        "128": "images\/icons\/100.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/etsyreviews.com\/*"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.etsyreviews.com\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.etsy.com\/*"
            ],
            "include_globs": [
                "*listing*"
            ],
            "js": [
                "js\/etsyDownloader.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.etsyreviews.com\/subscribe-with-paypal*"
            ],
            "js": [
                "js\/subscription.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icons\/cancel.png",
                "images\/icons\/save.png",
                "images\/icons\/loading.gif"
            ],
            "matches": [
                ""
            ]
        }
    ]
}