Table to CSV

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

Apa itu Table to CSV?

Table to CSV adalah ekstensi Chrome yang dikembangkan oleh kiko, dan fitur utamanya adalah "Any html table you click on is downloaded in csv format.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Table to CSV

Unduh file ekstensi Table to CSV dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Table to CSV Table to CSV
ID obbfbcfdflibnmadiigfgkkheoncmkfi
URL Resmi https://chrome.google.com/webstore/detail/table-to-csv/obbfbcfdflibnmadiigfgkkheoncmkfi
Deskripsi Any html table you click on is downloaded in csv format.
Ukuran File 5.68 KB
Jumlah Instalasi 493
Versi Saat Ini 1.0.3
Terakhir Diperbarui 2021-08-22
Tanggal Publikasi 2020-09-29
Penilaian 5.00/5 Total 1 Penilaian
Pengembang kiko
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://rickastleybomb.mediabot.ca/privacy.php
Bahasa yang Didukung 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"
            ]
        }
    ]
}