Table Row Numbers
This Chrome extension adds row numbers to all HTML tables in the left-most column.
Wat is Table Row Numbers?
Table Row Numbers is een Chrome-extensie ontwikkeld door https://ethanmallove.com, en de belangrijkste functie is "This Chrome extension adds row numbers to all HTML tables in the left-most column.".
Extensie Screenshots
Download het CRX-bestand van de extensie Table Row Numbers
Download Table Row Numbers-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | dlngenonkpbkkdcpbmjngnadngbimlmi |
| Officiële URL | https://chromewebstore.google.com/detail/table-row-numbers/dlngenonkpbkkdcpbmjngnadngbimlmi |
| Beschrijving | This Chrome extension adds row numbers to all HTML tables in the left-most column. |
| Bestandsgrootte | 46.9 KB |
| Aantal Installaties | 249 |
| Huidige Versie | 1.3 |
| Laatst Bijgewerkt | 2020-05-04 |
| Publicatiedatum | 2020-05-01 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | https://ethanmallove.com |
| [email protected] | |
| Betalingswijze | free |
| URL van de Privacybeleid Pagina | https://www.freeprivacypolicy.com/live/167bda2a-2c8c-440d-881c-7ae16f147200 |
| Ondersteunde Talen | 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"
}
} | |