Table to CSV

Any html table you click on is downloaded in csv format.

Cos'è Table to CSV?

Table to CSV è un'estensione di Chrome sviluppata da kiko, e la sua funzione principale è "Any html table you click on is downloaded in csv format.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Table to CSV

Scarica i file di estensione Table to CSV in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Shift+click on any html table to download in csv format. Works on tables that have inputs. Wraps each column in double quotes and escapes double quotes in table data, so commas and quotes are ok to have in your html column data.                    

Informazioni di Base sull'Estensione

Nome Table to CSV Table to CSV
ID obbfbcfdflibnmadiigfgkkheoncmkfi
URL Ufficiale https://chrome.google.com/webstore/detail/table-to-csv/obbfbcfdflibnmadiigfgkkheoncmkfi
Descrizione Any html table you click on is downloaded in csv format.
Dimensione del File 5.68 KB
Conteggio Installazioni 493
Versione Corrente 1.0.3
Ultimo Aggiornamento 2021-08-22
Data di Pubblicazione 2020-09-29
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore kiko
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://rickastleybomb.mediabot.ca/privacy.php
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Table to CSV",
    "description": "Any html table you click on is downloaded in csv format.",
    "version": "1.0.3",
    "icons": {
        "128": "table-icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}