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開發的Chrome擴展程式,該擴展的主要功能是“This Chrome extension adds row numbers to all HTML tables in the left-most column.”。

擴展截圖

screenshot

下載Table Row Numbers擴展crx文件

下載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
官方網址 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"
    }
}