Table Row Numbers

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

O que é Table Row Numbers?

Table Row Numbers é uma extensão do Chrome desenvolvida por https://ethanmallove.com, e sua principal característica é "This Chrome extension adds row numbers to all HTML tables in the left-most column.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Table Row Numbers

Baixe arquivos de extensão Table Row Numbers no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Table Row Numbers Table Row Numbers
ID dlngenonkpbkkdcpbmjngnadngbimlmi
URL Oficial https://chromewebstore.google.com/detail/table-row-numbers/dlngenonkpbkkdcpbmjngnadngbimlmi
Descrição This Chrome extension adds row numbers to all HTML tables in the left-most column.
Tamanho do Arquivo 46.9 KB
Contagem de Instalações 249
Versão Atual 1.3
Última Atualização 2020-05-04
Data de Publicação 2020-05-01
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://ethanmallove.com
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://www.freeprivacypolicy.com/live/167bda2a-2c8c-440d-881c-7ae16f147200
Idiomas Suportados 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"
    }
}