Table Row Numbers

This Chrome extension adds row numbers to all HTML tables in the left-most column.

Apa itu Table Row Numbers?

Table Row Numbers adalah ekstensi Chrome yang dikembangkan oleh https://ethanmallove.com, dan fitur utamanya adalah "This Chrome extension adds row numbers to all HTML tables in the left-most column.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Table Row Numbers

Unduh file ekstensi Table Row Numbers 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

                        Useful for easily counting rows in a large table (e.g., on Wikipedia) and tracking the original position of each row in the table after sorting.                    

Informasi Dasar Ekstensi

Nama Table Row Numbers Table Row Numbers
ID dlngenonkpbkkdcpbmjngnadngbimlmi
URL Resmi https://chromewebstore.google.com/detail/table-row-numbers/dlngenonkpbkkdcpbmjngnadngbimlmi
Deskripsi This Chrome extension adds row numbers to all HTML tables in the left-most column.
Ukuran File 46.9 KB
Jumlah Instalasi 249
Versi Saat Ini 1.3
Terakhir Diperbarui 2020-05-04
Tanggal Publikasi 2020-05-01
Penilaian 5.00/5 Total 1 Penilaian
Pengembang https://ethanmallove.com
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://www.freeprivacypolicy.com/live/167bda2a-2c8c-440d-881c-7ae16f147200
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Table Row Numbers",
    "description": "This Chrome extension adds row numbers to all HTML tables in the left-most column.",
    "version": "1.3",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "TableRowNumbering--icon-16x16.png",
        "48": "TableRowNumbering--icon-48x48.png",
        "128": "TableRowNumbering--icon-128x128.png"
    }
}