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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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": [
                ""
            ]
        }
    ]
}