Table Row Numbers
This Chrome extension adds row numbers to all HTML tables in the left-most column.
Co to jest Table Row Numbers?
Table Row Numbers to rozszerzenie Chrome opracowane przez https://ethanmallove.com, a jego główną funkcją jest „This Chrome extension adds row numbers to all HTML tables in the left-most column.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Table Row Numbers
Pobierz pliki rozszerzeń Table Row Numbers w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | dlngenonkpbkkdcpbmjngnadngbimlmi |
| Oficjalny URL | https://chromewebstore.google.com/detail/table-row-numbers/dlngenonkpbkkdcpbmjngnadngbimlmi |
| Opis | This Chrome extension adds row numbers to all HTML tables in the left-most column. |
| Rozmiar pliku | 46.9 KB |
| Liczba instalacji | 249 |
| Aktualna Wersja | 1.3 |
| Ostatnia Aktualizacja | 2020-05-04 |
| Data Publikacji | 2020-05-01 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | https://ethanmallove.com |
| [email protected] | |
| Typ Płatności | free |
| Adres URL Strony Polityki Prywatności | https://www.freeprivacypolicy.com/live/167bda2a-2c8c-440d-881c-7ae16f147200 |
| Obsługiwane Języki | 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"
}
} | |