Chromescraper

Easily any data from any webpage

Chromescraper란 무엇입니까?

Chromescraper은(는) AltIvan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily any data from any webpage"입니다.

확장 프로그램 스크린샷

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

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

확장 프로그램 사용 설명서

                        Extract any data from any website, just right-click it and select "ChromeScrap this!", move the slider to expand the selector until it covers one of the elements you want to scrap. Then check (or un-check) the classes until you are satisfied with the result, it exports the data to google spreadsheets for easy viewing and modifying, if there are columns you don't need just delete them! That's it.

Watch the video if you still have doubts about how to use it!                    

확장 프로그램 기본 정보

이름 Chromescraper Chromescraper
ID gpnnphicgidbmjhcglefdaeildldigfp
공식 URL https://chrome.google.com/webstore/detail/chromescraper/gpnnphicgidbmjhcglefdaeildldigfp
설명 Easily any data from any webpage
파일 크기 354 KB
설치 횟수 5,000
현재 버전 0.2
최근 업데이트 2015-10-06
출시 날짜 2015-10-06
평점 2.22/5 총 32 개의 평점
개발자 AltIvan
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chromescraper",
    "version": "0.2",
    "description": "Easily any data from any webpage",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "contentSettings",
        "contextMenus",
        "tabs",
        "identity",
        "https:\/\/spreadsheets.google.com\/feeds\/",
        "storage"
    ],
    "oauth2": {
        "client_id": "167010525276-nt5qkngb2dnifsnjg9b70lfkujl3pu30.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/spreadsheets.google.com\/feeds",
            "https:\/\/www.googleapis.com\/auth\/drive"
        ]
    },
    "web_accessible_resources": [
        "utils.js",
        "libs\/*",
        "snippets\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "libs\/require.js",
                "require_config.js",
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "chromescrap.js"
        ]
    }
}