Esty Product Scraper

Get Product details in XLSX file from etsy.com

Esty Product Scraper란 무엇입니까?

Esty Product Scraper은(는) Tech Masters에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get Product details in XLSX file from etsy.com"입니다.

확장 프로그램 스크린샷

screenshot

Esty Product Scraper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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].                    

확장 프로그램 기본 정보

이름 Esty Product Scraper Esty Product Scraper
ID hojnadjahljijkiagbkdiidkhelkgklj
공식 URL https://chrome.google.com/webstore/detail/esty-product-scraper/hojnadjahljijkiagbkdiidkhelkgklj
설명 Get Product details in XLSX file from etsy.com
파일 크기 533 KB
설치 횟수 112
현재 버전 1.0.3
최근 업데이트 2020-06-10
출시 날짜 2020-06-10
개발자 Tech Masters
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
    ]
}