Chrome Show Tab Numbers

A Chromium extension to show tab numbers.

Chrome Show Tab Numbers là gì?

Chrome Show Tab Numbers là một tiện ích mở rộng Chrome được phát triển bởi kg8m, và tính năng chính của nó là "A Chromium extension to show tab numbers.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Chrome Show Tab Numbers

Tải xuống các tệp mở rộng Chrome Show Tab Numbers dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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 .                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Chrome Show Tab Numbers Chrome Show Tab Numbers
ID pflnpcinjbcfefgbejjfanemlgcfjbna
URL Chính Thức https://chromewebstore.google.com/detail/chrome-show-tab-numbers/pflnpcinjbcfefgbejjfanemlgcfjbna
Mô tả A Chromium extension to show tab numbers.
Kích Thước Tệp 13.47 KB
Số Lần Cài Đặt 1,363
Phiên Bản Hiện Tại 1.3.1
Cập Nhật Lần Cuối 2023-12-29
Ngày Phát Hành 2022-04-28
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển kg8m
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/kg8m/chrome-show-tab-numbers
URL Trang Trợ Giúp https://github.com/kg8m/chrome-show-tab-numbers/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}