Download table as CSV

Download HTML tables in MS Excel style CSV format.

¿Qué es Download table as CSV?

Download table as CSV es una extensión de Chrome desarrollada por arktiv, y su función principal es "Download HTML tables in MS Excel style CSV format.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Download table as CSV

Descarga archivos de extensión Download table as CSV 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

                        Simple to use! 

Right click on the table, then select 'Download table as CSV' from the context menu.

Alternatively you can click the icon and then click on the table to download

The extension downloads the HTML tables in MS Excel style CSV format. 

Images will be show in the CSV file as the source URL.
Inputs and text-areas will be indicated in the CSV file with a '(i)'

Support for UTF-8 with BOM (Special thanks to mantaroh) - You can toggle this in the extensions popup.

Note: Sometimes special characters, symbols will not look as you might expect, this is not a bug, rather a limitation of the format.

Attempts to follow RFC4180

Source code: https://github.com/arktiv/table-csv-chrome                    

Información Básica de la Extensión

Nombre Download table as CSV Download table as CSV
ID jgeonblahchgiadgojdjilffklaihalj
URL Oficial https://chromewebstore.google.com/detail/download-table-as-csv/jgeonblahchgiadgojdjilffklaihalj
Descripción Download HTML tables in MS Excel style CSV format.
Tamaño del Archivo 8.34 KB
Cantidad de Instalaciones 20,000
Versión Actual 1.6
Última Actualización 2023-11-27
Fecha de Publicación 2020-05-30
Calificación 4.33/5 Total de 39 Calificaciones
Desarrollador arktiv
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/arktiv/table-csv-chrome
URL de la Página de Ayuda https://github.com/arktiv/table-csv-chrome
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Download table as CSV",
    "description": "Download HTML tables in MS Excel style CSV format.",
    "version": "1.6",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "32": "icons\/32x32.png",
        "64": "icons\/64x64.png",
        "128": "icons\/128x128.png"
    }
}