ScreenScraper

Tool to automatically grab data from sites

ScreenScraper란 무엇입니까?

ScreenScraper은(는) https://bsalinas.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tool to automatically grab data from sites"입니다.

확장 프로그램 스크린샷

screenshot

ScreenScraper 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Automatically grab sets of data from websites and download it as a CSV or JSON file. Basically, a small extension that acts as a screen scraper and lets your easily scrape data from a website.

Let's say you have a website with:
Joe Seattle
Jean Austin
Ben Boston
Grab all that data by selecting ".foo" and then make columns for ".name", ".city", and the "src" attribute of "img". Enjoy your screen scraping!

확장 프로그램 기본 정보

이름 ScreenScraper ScreenScraper
ID pfegffhjcgkneoemnlniggnhkfioidjg
공식 URL https://chromewebstore.google.com/detail/screenscraper/pfegffhjcgkneoemnlniggnhkfioidjg
설명 Tool to automatically grab data from sites
파일 크기 135 KB
설치 횟수 4,020
현재 버전 0.3.1
최근 업데이트 2013-07-15
출시 날짜 2013-07-15
평점 3.00/5 총 34 개의 평점
개발자 https://bsalinas.com
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ScreenScraper",
    "description": "Tool to automatically grab data from sites",
    "version": "0.3.1",
    "icons": {
        "128": "logo_128.png",
        "48": "logo_48.png",
        "16": "logo_16.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "jquery-1.9.1.min.js",
                "myscript.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "browser_action": {
        "default_title": "ScreenScraper",
        "default_popup": "popup.html",
        "default_icon": {
            "19": "logo_19.png",
            "38": "logo_38.png"
        }
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs"
    ]
}