Download table as CSV

Download HTML tables in MS Excel style CSV format.

Was ist Download table as CSV?

Download table as CSV ist eine Chrome-Erweiterung, die von arktiv entwickelt wurde, und ihr Hauptmerkmal ist "Download HTML tables in MS Excel style CSV format.".

Erweiterungsscreenshots

screenshot
screenshot

Download table as CSV-Erweiterungs-CRX-Datei herunterladen

Laden Sie Download table as 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

                        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                    

Grundlegende Informationen zur Erweiterung

Name Download table as CSV Download table as CSV
ID jgeonblahchgiadgojdjilffklaihalj
Offizielle URL https://chromewebstore.google.com/detail/download-table-as-csv/jgeonblahchgiadgojdjilffklaihalj
Beschreibung Download HTML tables in MS Excel style CSV format.
Dateigröße 8.34 KB
Installationsanzahl 20,000
Aktuelle Version 1.6
Letztes Update 2023-11-27
Veröffentlichungsdatum 2020-05-30
Bewertung 4.33/5 Insgesamt 39 Bewertungen
Entwickler arktiv
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/arktiv/table-csv-chrome
Hilfeseite URL https://github.com/arktiv/table-csv-chrome
Unterstützte Sprachen 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"
    }
}