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