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文件

下載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
官方網址 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": [
                ""
            ]
        }
    ]
}