Table Row Numbers

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

Vad är Table Row Numbers?

Table Row Numbers är en Chrome-tillägg utvecklad av https://ethanmallove.com, och dess huvudfunktion är "This Chrome extension adds row numbers to all HTML tables in the left-most column.".

Tilläggsskärmbilder

screenshot

Ladda ner Table Row Numbers-förlängningens CRX-fil

Ladda ner Table Row Numbers-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Table Row Numbers Table Row Numbers
ID dlngenonkpbkkdcpbmjngnadngbimlmi
Officiell webbadress https://chromewebstore.google.com/detail/table-row-numbers/dlngenonkpbkkdcpbmjngnadngbimlmi
Beskrivning This Chrome extension adds row numbers to all HTML tables in the left-most column.
Filstorlek 46.9 KB
Antal Installationer 249
Aktuell Version 1.3
Senast Uppdaterad 2020-05-04
Publiceringsdatum 2020-05-01
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://ethanmallove.com
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://www.freeprivacypolicy.com/live/167bda2a-2c8c-440d-881c-7ae16f147200
Stödda Språk 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"
    }
}