TableScraper

Allows you to download web tables as .csv files

TableScraper란 무엇입니까?

TableScraper은(는) JessieCS50에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to download web tables as .csv files"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Automatically finds tables in web pages and adds "Download as csv" buttons so you can easily collect data without the need for copy and paste. "I wish I could download this as a csv" - now you can!                    

확장 프로그램 기본 정보

이름 TableScraper TableScraper
ID emkcilhnngffafccblemkljfpkabpapg
공식 URL https://chromewebstore.google.com/detail/tablescraper/emkcilhnngffafccblemkljfpkabpapg
설명 Allows you to download web tables as .csv files
파일 크기 55.5 KB
설치 횟수 163
현재 버전 1.1
최근 업데이트 2020-05-04
출시 날짜 2020-05-04
개발자 JessieCS50
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TableScraper",
    "version": "1.1",
    "description": "Allows you to download web tables as .csv files",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "permissions": [
        "activeTab",
        "declarativeContent"
    ],
    "manifest_version": 2
}