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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Table Row Numbers
قم بتنزيل ملفات الامتداد Table Row Numbers بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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 |
عنوان صفحة سياسة الخصوصية | 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" } } |