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.
¿Qué es CSV Viewer by Table Capture?
CSV Viewer by Table Capture es una extensión de Chrome desarrollada por https://georgemike.com, y su función principal es "Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión CSV Viewer by Table Capture
Descarga archivos de extensión CSV Viewer by Table Capture en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | CSV Viewer by Table Capture |
ID | igjpnkigohahllcmmgbeabfkoklalljc |
URL Oficial | https://chromewebstore.google.com/detail/csv-viewer-by-table-captu/igjpnkigohahllcmmgbeabfkoklalljc |
Descripción | Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file. |
Tamaño del Archivo | 695 KB |
Cantidad de Instalaciones | 555 |
Versión Actual | 1.0.10 |
Última Actualización | 2023-02-09 |
Fecha de Publicación | 2022-10-29 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | https://georgemike.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://georgemike.com/ |
URL de la Página de Ayuda | https://georgemike.com/ |
URL de la Página de Política de Privacidad | https://www.georgemike.com/chrome/privacypolicy |
Idiomas Soportados | 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" ] } |