Table Row Numbers

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

Table Row Numbersคืออะไร?

Table Row Numbers เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://ethanmallove.com และคุณลักษณะหลักของมันคือ "This Chrome extension adds row numbers to all HTML tables in the left-most column."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Table Row Numbers

ดาวน์โหลดไฟล์ส่วนขยาย Table Row Numbers ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}