Table Row Numbers

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

Table Row Numbers là gì?

Table Row Numbers là một tiện ích mở rộng Chrome được phát triển bởi https://ethanmallove.com, và tính năng chính của nó là "This Chrome extension adds row numbers to all HTML tables in the left-most column.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Table Row Numbers

Tải xuống các tệp mở rộng Table Row Numbers dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Table Row Numbers Table Row Numbers
ID dlngenonkpbkkdcpbmjngnadngbimlmi
URL Chính Thức https://chromewebstore.google.com/detail/table-row-numbers/dlngenonkpbkkdcpbmjngnadngbimlmi
Mô tả This Chrome extension adds row numbers to all HTML tables in the left-most column.
Kích Thước Tệp 46.9 KB
Số Lần Cài Đặt 249
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2020-05-04
Ngày Phát Hành 2020-05-01
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://ethanmallove.com
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.freeprivacypolicy.com/live/167bda2a-2c8c-440d-881c-7ae16f147200
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}