Esty Product Scraper

Get Product details in XLSX file from etsy.com

Esty Product Scraper là gì?

Esty Product Scraper là một tiện ích mở rộng Chrome được phát triển bởi Tech Masters, và tính năng chính của nó là "Get Product details in XLSX file from etsy.com".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Esty Product Scraper

Tải xuống các tệp mở rộng Esty Product Scraper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Etsy product scrapping tool to scrape different product details like Title, Image Link and price etc.

If you need more features in this extension I would be happy to hear that.
You can contact me directly on [email protected].                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Esty Product Scraper Esty Product Scraper
ID hojnadjahljijkiagbkdiidkhelkgklj
URL Chính Thức https://chrome.google.com/webstore/detail/esty-product-scraper/hojnadjahljijkiagbkdiidkhelkgklj
Mô tả Get Product details in XLSX file from etsy.com
Kích Thước Tệp 533 KB
Số Lần Cài Đặt 112
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2020-06-10
Ngày Phát Hành 2020-06-10
Nhà Phát Triển Tech Masters
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "jquery.min.js",
            "background_script.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "128": "images\/icon192.png",
            "144": "images\/icon144.png",
            "16": "images\/icon36.png",
            "24": "images\/icon48.png",
            "32": "images\/icon72.png"
        },
        "default_popup": "popup.html",
        "default_title": "Esty Product Scraper"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "filesaver.min.js",
                "xlsx.min.js",
                "content_script.js"
            ],
            "matches": [
                "https:\/\/www.etsy.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Get Product details in XLSX file from etsy.com",
    "icons": {
        "128": "images\/37-512.png"
    },
    "manifest_version": 2,
    "name": "Esty Product Scraper",
    "permissions": [
        "tabs",
        "downloads"
    ],
    "short_name": "Web Scraper",
    "version": "1.0.3",
    "web_accessible_resources": [
        "images\/icon16.png",
        "images\/icon24.png",
        "images\/icon32.png",
        "images\/icon48.png",
        "images\/icon128.png"
    ]
}