Table to CSV

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

Hvad er Table to CSV?

Table to CSV er en Chrome-udvidelse udviklet af kiko, og dens hovedfunktion er "Any html table you click on is downloaded in csv format.".

Udvidelsesskærmbilleder

screenshot

Download Table to CSV-udvidelses-CRX-fil

Download Table to CSV-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Table to CSV Table to CSV
ID obbfbcfdflibnmadiigfgkkheoncmkfi
Officiel URL https://chrome.google.com/webstore/detail/table-to-csv/obbfbcfdflibnmadiigfgkkheoncmkfi
Beskrivelse Any html table you click on is downloaded in csv format.
Filstørrelse 5.68 KB
Antal Installationer 493
Nuværende Version 1.0.3
Senest Opdateret 2021-08-22
Udgivelsesdato 2020-09-29
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler kiko
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://rickastleybomb.mediabot.ca/privacy.php
Understøttede Sprog 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"
            ]
        }
    ]
}