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