Table Row Numbers

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

Cos'è Table Row Numbers?

Table Row Numbers è un'estensione di Chrome sviluppata da https://ethanmallove.com, e la sua funzione principale è "This Chrome extension adds row numbers to all HTML tables in the left-most column.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Table Row Numbers

Scarica i file di estensione Table Row Numbers in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Table Row Numbers Table Row Numbers
ID dlngenonkpbkkdcpbmjngnadngbimlmi
URL Ufficiale https://chromewebstore.google.com/detail/table-row-numbers/dlngenonkpbkkdcpbmjngnadngbimlmi
Descrizione This Chrome extension adds row numbers to all HTML tables in the left-most column.
Dimensione del File 46.9 KB
Conteggio Installazioni 249
Versione Corrente 1.3
Ultimo Aggiornamento 2020-05-04
Data di Pubblicazione 2020-05-01
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://ethanmallove.com
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://www.freeprivacypolicy.com/live/167bda2a-2c8c-440d-881c-7ae16f147200
Lingue Supportate 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"
    }
}