HTMLtoCSV
Exports HTML tables to CSV spreadsheets.
HTMLtoCSV란 무엇입니까?
HTMLtoCSV은(는) oldjamey에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Exports HTML tables to CSV spreadsheets."입니다.
확장 프로그램 스크린샷
HTMLtoCSV 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A handy extension that scrapes HTML tables from the current page and adds buttons to download each table as individual CSV spreadsheets. Simple 2-step process: on the web page with data that you want to export, click the ultraball. All tables will be extracted from the page along with download buttons to export as CSV. Click the "Download as CSV" button to download the HTML table as a CSV spreadsheet. Saves all column headers and as much formatting as is available for CSV-formatted spreadsheets. If you need to get fancy with it and edit your spreadsheets before exporting, you may want to try "Instant Data Scraper" (no affiliation). This extension is barebones, vanilla JavaScript without any extra bells and/or whistles, in order to make your workflow as streamlined as possible.
확장 프로그램 기본 정보
이름 | HTMLtoCSV |
ID | cebninopfmnhginjlgfilofjgaakiock |
공식 URL | https://chromewebstore.google.com/detail/htmltocsv/cebninopfmnhginjlgfilofjgaakiock |
설명 | Exports HTML tables to CSV spreadsheets. |
파일 크기 | 21.34 KB |
설치 횟수 | 257 |
현재 버전 | 1.0 |
최근 업데이트 | 2022-02-25 |
출시 날짜 | 2022-02-24 |
개발자 | oldjamey |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en,en-GB,en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "version": "1.0", "manifest_version": 3, "default_locale": "en", "icons": { "16": ".\/img\/16.png", "32": ".\/img\/32.png", "19": ".\/img\/19.png", "38": ".\/img\/38.png", "48": ".\/img\/48.png", "128": ".\/img\/128.png" }, "background": { "service_worker": ".\/background.js" }, "action": { "default_icon": { "16": ".\/img\/16.png", "19": ".\/img\/19.png", "38": ".\/img\/38.png", "48": ".\/img\/48.png", "128": ".\/img\/128.png" } }, "permissions": [ "activeTab", "scripting" ], "host_permissions": [ "*:\/\/*\/*" ] } |