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