Table to CSV

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

Was ist Table to CSV?

Table to CSV ist eine Chrome-Erweiterung, die von kiko entwickelt wurde, und ihr Hauptmerkmal ist "Any html table you click on is downloaded in csv format.".

Erweiterungsscreenshots

screenshot

Table to CSV-Erweiterungs-CRX-Datei herunterladen

Laden Sie Table to CSV-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Table to CSV Table to CSV
ID obbfbcfdflibnmadiigfgkkheoncmkfi
Offizielle URL https://chrome.google.com/webstore/detail/table-to-csv/obbfbcfdflibnmadiigfgkkheoncmkfi
Beschreibung Any html table you click on is downloaded in csv format.
Dateigröße 5.68 KB
Installationsanzahl 493
Aktuelle Version 1.0.3
Letztes Update 2021-08-22
Veröffentlichungsdatum 2020-09-29
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler kiko
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://rickastleybomb.mediabot.ca/privacy.php
Unterstützte Sprachen 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"
            ]
        }
    ]
}