Chrome Show Tab Numbers

A Chromium extension to show tab numbers.

Chrome Show Tab Numbers란 무엇입니까?

Chrome Show Tab Numbers은(는) kg8m에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chromium extension to show tab numbers."입니다.

확장 프로그램 스크린샷

screenshot

Chrome Show Tab Numbers 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension shows tab numbers. In other words, this extension adds a numeric prefix before each tab title. For example, "1. GitHub," "99. Google Calendar," and so on.

With this extension, you can detect each tab's number easily and navigate between tabs with ctrl/⌘ + 1-9 keys.

Notable features:

- This extension supports Google Chrome’s collapsed tab group feature, automatically ignoring tabs in a collapsed tab group.
- You can toggle tab numbering for all tabs or just the current one via keyboard shortcuts or the extension’s context menu.
- Tab numbers can be relative, displaying the current tab’s absolute number and indicating the position of other tabs relative to it ― how many tabs they are ahead or behind the current one.

This extension is an open source software. Feel free to report bugs and request features at https://github.com/kg8m/chrome-show-tab-numbers/issues .                    

확장 프로그램 기본 정보

이름 Chrome Show Tab Numbers Chrome Show Tab Numbers
ID pflnpcinjbcfefgbejjfanemlgcfjbna
공식 URL https://chromewebstore.google.com/detail/chrome-show-tab-numbers/pflnpcinjbcfefgbejjfanemlgcfjbna
설명 A Chromium extension to show tab numbers.
파일 크기 13.47 KB
설치 횟수 1,363
현재 버전 1.3.1
최근 업데이트 2023-12-29
출시 날짜 2022-04-28
평점 5.00/5 총 4 개의 평점
개발자 kg8m
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/kg8m/chrome-show-tab-numbers
도움말 페이지 URL https://github.com/kg8m/chrome-show-tab-numbers/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Chrome Show Tab Numbers",
    "version": "1.3.1",
    "description": "A Chromium extension to show tab numbers.",
    "icons": {
        "128": "assets\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "contextMenus",
        "scripting",
        "storage",
        "tabGroups",
        "tabs"
    ],
    "host_permissions": [
        ""
    ],
    "commands": {
        "toggle-all-tabs": {
            "description": "Toggle tab numbering for all tabs"
        },
        "toggle-current-tab": {
            "description": "Toggle tab numbering for current tab"
        }
    }
}