Table Row Numbers
This Chrome extension adds row numbers to all HTML tables in the left-most column.
Table Row Numbers란 무엇입니까?
Table Row Numbers은(는) https://ethanmallove.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This Chrome extension adds row numbers to all HTML tables in the left-most column."입니다.
확장 프로그램 스크린샷
Table Row Numbers 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
개인정보 보호 정책 페이지 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" } } |