Table Exporter

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

Hvad er Table Exporter?

Table Exporter er en Chrome-udvidelse udviklet af devharshadkumar, og dens hovedfunktion er "Simplify data analysis: Export tables as CSV with this Chrome extension. Click 'Export as CSV' for quick, effortless sharing.".

Udvidelsesskærmbilleder

screenshot

Download Table Exporter-udvidelses-CRX-fil

Download Table Exporter-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

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Table Exporter Table Exporter
ID hilhbahifagjkiahkldkfngaheeoabap
Officiel URL https://chromewebstore.google.com/detail/table-exporter/hilhbahifagjkiahkldkfngaheeoabap
Beskrivelse Simplify data analysis: Export tables as CSV with this Chrome extension. Click 'Export as CSV' for quick, effortless sharing.
Filstørrelse 15.6 KB
Antal Installationer 41
Nuværende Version 1.0
Senest Opdateret 2023-09-14
Udgivelsesdato 2023-09-13
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler devharshadkumar
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
        }
    ]
}