CSV Viewer by Table Capture
Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.
CSV Viewer by Table Capture란 무엇입니까?
CSV Viewer by Table Capture은(는) https://georgemike.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file."입니다.
확장 프로그램 스크린샷
CSV Viewer by Table Capture 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
CSV Viewer displays CSV data in a lovely table and helps you copy that data with proper row and column-delimiters so that you can get that data into a spreadsheet of your choice. As a reminder, make sure to give the extension access to local files if you'd like CSV Viewer to handle CSV files you drop into Chrome. Last Updated: 2/8/2023
확장 프로그램 기본 정보
이름 | CSV Viewer by Table Capture |
ID | igjpnkigohahllcmmgbeabfkoklalljc |
공식 URL | https://chromewebstore.google.com/detail/csv-viewer-by-table-captu/igjpnkigohahllcmmgbeabfkoklalljc |
설명 | Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file. |
파일 크기 | 695 KB |
설치 횟수 | 555 |
현재 버전 | 1.0.10 |
최근 업데이트 | 2023-02-09 |
출시 날짜 | 2022-10-29 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://georgemike.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://georgemike.com/ |
도움말 페이지 URL | https://georgemike.com/ |
개인정보 보호 정책 페이지 URL | https://www.georgemike.com/chrome/privacypolicy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "1.0.10", "name": "CSV Viewer by Table Capture", "short_name": "CSV Viewer", "description": "Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.", "homepage_url": "https:\/\/georgemike.com", "default_locale": "en", "icons": { "128": "images\/icon.128.png" }, "background": { "service_worker": "js\/background.js" }, "options_page": "options.html", "web_accessible_resources": [ { "resources": [ "images\/icon.128.png", "images\/icon.tablecapture.png", "images\/icon.png" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "content_scripts": [ { "run_at": "document_end", "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/lib\/Blob.js", "js\/lib\/FileSaver.v2.0.2.min.js", "js\/lib\/xlsx.full.1.13.0.min.js", "js\/lib\/papaparse.min.js", "js\/Clipboard.js", "js\/Config.js", "js\/CSVV.js", "js\/ExcelUtil.js", "js\/MessageAction.js", "js\/Utils.js", "js\/content.js" ], "css": [ "css\/content.css" ], "all_frames": false } ], "permissions": [ "contextMenus", "downloads" ] } |