ETSY Reviews Downloader

Download Etsy Product Reviews Automatically!

ما هو ETSY Reviews Downloader؟

ETSY Reviews Downloader هو إضافة Chrome تم تطويرها بواسطة etsy-review-group، والميزة الرئيسية لها هي "Download Etsy Product Reviews Automatically!".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة ETSY Reviews Downloader

قم بتنزيل ملفات الامتداد ETSY Reviews Downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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": [
                ""
            ]
        }
    ]
}