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.
What is CSV Viewer by Table Capture?
CSV Viewer by Table Capture is a Chrome extension developed by https://georgemike.com, and its main feature is "Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.".
Extension Screenshots
Download CSV Viewer by Table Capture Extension CRX File
Download CSV Viewer by Table Capture extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | CSV Viewer by Table Capture |
ID | igjpnkigohahllcmmgbeabfkoklalljc |
Official URL | https://chromewebstore.google.com/detail/csv-viewer-by-table-captu/igjpnkigohahllcmmgbeabfkoklalljc |
Description | Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file. |
File Size | 695 KB |
Installation Count | 555 |
Current Version | 1.0.10 |
Last Updated | 2023-02-09 |
Publish Date | 2022-10-29 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://georgemike.com |
[email protected] | |
Payment Type | free |
Extension Website | https://georgemike.com/ |
Help Page URL | https://georgemike.com/ |
Privacy Policy Page URL | https://www.georgemike.com/chrome/privacypolicy |
Supported Languages | 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" ] } |