Download table as CSV
Download HTML tables in MS Excel style CSV format.
Download table as CSV란 무엇입니까?
Download table as CSV은(는) arktiv에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download HTML tables in MS Excel style CSV format."입니다.
확장 프로그램 스크린샷
Download table as CSV 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Simple to use! Right click on the table, then select 'Download table as CSV' from the context menu. Alternatively you can click the icon and then click on the table to download The extension downloads the HTML tables in MS Excel style CSV format. Images will be show in the CSV file as the source URL. Inputs and text-areas will be indicated in the CSV file with a '(i)' Support for UTF-8 with BOM (Special thanks to mantaroh) - You can toggle this in the extensions popup. Note: Sometimes special characters, symbols will not look as you might expect, this is not a bug, rather a limitation of the format. Attempts to follow RFC4180 Source code: https://github.com/arktiv/table-csv-chrome
확장 프로그램 기본 정보
이름 | Download table as CSV |
ID | jgeonblahchgiadgojdjilffklaihalj |
공식 URL | https://chromewebstore.google.com/detail/download-table-as-csv/jgeonblahchgiadgojdjilffklaihalj |
설명 | Download HTML tables in MS Excel style CSV format. |
파일 크기 | 8.34 KB |
설치 횟수 | 20,000 |
현재 버전 | 1.6 |
최근 업데이트 | 2023-11-27 |
출시 날짜 | 2020-05-30 |
평점 | 4.33/5 총 39 개의 평점 |
개발자 | arktiv |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/arktiv/table-csv-chrome |
도움말 페이지 URL | https://github.com/arktiv/table-csv-chrome |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Download table as CSV", "description": "Download HTML tables in MS Excel style CSV format.", "version": "1.6", "manifest_version": 2, "permissions": [ "contextMenus", "activeTab", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html" }, "icons": { "32": "icons\/32x32.png", "64": "icons\/64x64.png", "128": "icons\/128x128.png" } } |