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文件

下載Chrome Show Tab Numbers擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        }
    }
}