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.
Was ist CSV Viewer by Table Capture?
CSV Viewer by Table Capture ist eine Chrome-Erweiterung, die von https://georgemike.com entwickelt wurde, und ihr Hauptmerkmal ist "Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.".
Erweiterungsscreenshots
CSV Viewer by Table Capture-Erweiterungs-CRX-Datei herunterladen
Laden Sie CSV Viewer by Table Capture-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | CSV Viewer by Table Capture |
ID | igjpnkigohahllcmmgbeabfkoklalljc |
Offizielle URL | https://chromewebstore.google.com/detail/csv-viewer-by-table-captu/igjpnkigohahllcmmgbeabfkoklalljc |
Beschreibung | Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file. |
Dateigröße | 695 KB |
Installationsanzahl | 555 |
Aktuelle Version | 1.0.10 |
Letztes Update | 2023-02-09 |
Veröffentlichungsdatum | 2022-10-29 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://georgemike.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://georgemike.com/ |
Hilfeseite URL | https://georgemike.com/ |
URL der Datenschutzrichtlinien-Seite | https://www.georgemike.com/chrome/privacypolicy |
Unterstützte Sprachen | 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" ] } |