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 là gì?
CSV Viewer by Table Capture là một tiện ích mở rộng Chrome được phát triển bởi https://georgemike.com, và tính năng chính của nó là "Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng CSV Viewer by Table Capture
Tải xuống các tệp mở rộng CSV Viewer by Table Capture dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | CSV Viewer by Table Capture |
ID | igjpnkigohahllcmmgbeabfkoklalljc |
URL Chính Thức | https://chromewebstore.google.com/detail/csv-viewer-by-table-captu/igjpnkigohahllcmmgbeabfkoklalljc |
Mô tả | Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file. |
Kích Thước Tệp | 695 KB |
Số Lần Cài Đặt | 555 |
Phiên Bản Hiện Tại | 1.0.10 |
Cập Nhật Lần Cuối | 2023-02-09 |
Ngày Phát Hành | 2022-10-29 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | https://georgemike.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://georgemike.com/ |
URL Trang Trợ Giúp | https://georgemike.com/ |
URL Trang Chính Sách Bảo Mật | https://www.georgemike.com/chrome/privacypolicy |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |