Spider Free - The simplest web scraper

Spider let's you turn websites into organized data, download them as JSON/CSV. No coding or configuration required.

Spider Free - The simplest web scraper란 무엇입니까?

Spider Free - The simplest web scraper은(는) https://amie-chen.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Spider let's you turn websites into organized data, download them as JSON/CSV. No coding or configuration required."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Spider Free - The simplest web scraper 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Spider is a smart point-and-click web scraping tool. With Spider, you can turn websites into organized data, download it as JSON or spreadsheet. There's no coding experience or configuration time involved, simply open the chrome extension and start clicking.                    

확장 프로그램 기본 정보

이름 Spider Free - The simplest web scraper Spider Free - The simplest web scraper
ID hhblpocflefpmmfibmajdfcjdkeafpen
공식 URL https://chromewebstore.google.com/detail/spider-free-the-simplest/hhblpocflefpmmfibmajdfcjdkeafpen
설명 Spider let's you turn websites into organized data, download them as JSON/CSV. No coding or configuration required.
파일 크기 17.4 KB
설치 횟수 8,749
현재 버전 2.0
최근 업데이트 2022-07-26
출시 날짜 2019-04-26
평점 4.00/5 총 26 개의 평점
개발자 https://amie-chen.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://amie-chen.com
도움말 페이지 URL https://amie-chen.com
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spider Free - The simplest web scraper",
    "short_name": "Spider",
    "version": "2.0",
    "author": "Amie Chen",
    "description": "Spider let's you turn websites into organized data, download them as JSON\/CSV. No coding or configuration required.",
    "manifest_version": 3,
    "commands": {
        "toggle-spider": {
            "suggested_key": {
                "default": "Alt+Q",
                "mac": "Alt+Q",
                "windows": "Alt+Q",
                "chromeos": "Alt+Q",
                "linux": "Alt+Q"
            },
            "description": "Toggle Spider"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*",
                "content\/content.html",
                "content\/content.css",
                "content-min.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "downloads",
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/fonts.googleapis.com\/",
        "https:\/\/fonts.googleapis.com\/"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "32": "images\/logo-32.png"
        }
    }
}