Table Row Numbers

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

What is Table Row Numbers?

Table Row Numbers is a Chrome extension developed by https://ethanmallove.com, and its main feature is "This Chrome extension adds row numbers to all HTML tables in the left-most column.".

Extension Screenshots

screenshot

Download Table Row Numbers Extension CRX File

Download Table Row Numbers extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Table Row Numbers Table Row Numbers
ID dlngenonkpbkkdcpbmjngnadngbimlmi
Official URL https://chromewebstore.google.com/detail/table-row-numbers/dlngenonkpbkkdcpbmjngnadngbimlmi
Description This Chrome extension adds row numbers to all HTML tables in the left-most column.
File Size 46.9 KB
Installation Count 249
Current Version 1.3
Last Updated 2020-05-04
Publish Date 2020-05-01
Rating 5.00/5 Total 1 Ratings
Developer https://ethanmallove.com
Email [email protected]
Payment Type free
Privacy Policy Page URL https://www.freeprivacypolicy.com/live/167bda2a-2c8c-440d-881c-7ae16f147200
Supported Languages 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"
    }
}