Table Row Numbers

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

Table Row Numbers क्या है?

Table Row Numbers https://ethanmallove.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This Chrome extension adds row numbers to all HTML tables in the left-most column."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Table Row Numbers एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Table Row Numbers Table Row Numbers
ID dlngenonkpbkkdcpbmjngnadngbimlmi
आधिकारिक URL https://chromewebstore.google.com/detail/table-row-numbers/dlngenonkpbkkdcpbmjngnadngbimlmi
विवरण This Chrome extension adds row numbers to all HTML tables in the left-most column.
फ़ाइल का आकार 46.9 KB
स्थापना संख्या 249
वर्तमान संस्करण 1.3
अंतिम अपडेट 2020-05-04
प्रकाशन तिथि 2020-05-01
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर https://ethanmallove.com
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://www.freeprivacypolicy.com/live/167bda2a-2c8c-440d-881c-7ae16f147200
समर्थित भाषाएँ 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"
    }
}