Table Exporter

Simplify data analysis: Export tables as CSV with this Chrome extension. Click 'Export as CSV' for quick, effortless sharing.

Was ist Table Exporter?

Table Exporter ist eine Chrome-Erweiterung, die von devharshadkumar entwickelt wurde, und ihr Hauptmerkmal ist "Simplify data analysis: Export tables as CSV with this Chrome extension. Click 'Export as CSV' for quick, effortless sharing.".

Erweiterungsscreenshots

screenshot

Table Exporter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Table Exporter-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

                        This Chrome extension streamlines the process of data analysis by providing a straightforward solution to export tables as CSV files. With a simple click of the 'Export as CSV' button conveniently located next to any table on a webpage, users can swiftly download the data they need for in-depth analysis or effortless sharing. This user-friendly tool empowers individuals to extract valuable insights from web-based tables without the hassle of manual data extraction, making data analysis a more efficient and accessible task for all.                    

Grundlegende Informationen zur Erweiterung

Name Table Exporter Table Exporter
ID hilhbahifagjkiahkldkfngaheeoabap
Offizielle URL https://chromewebstore.google.com/detail/table-exporter/hilhbahifagjkiahkldkfngaheeoabap
Beschreibung Simplify data analysis: Export tables as CSV with this Chrome extension. Click 'Export as CSV' for quick, effortless sharing.
Dateigröße 15.6 KB
Installationsanzahl 41
Aktuelle Version 1.0
Letztes Update 2023-09-14
Veröffentlichungsdatum 2023-09-13
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler devharshadkumar
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Table Exporter",
    "version": "1.0",
    "description": "Simplify data analysis: Export tables as CSV with this Chrome extension. Click 'Export as CSV' for quick, effortless sharing.",
    "permissions": [],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png",
            "256": "images\/icon256.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png",
        "256": "images\/icon256.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}