Chrome Show Tab Numbers

A Chromium extension to show tab numbers.

O que é Chrome Show Tab Numbers?

Chrome Show Tab Numbers é uma extensão do Chrome desenvolvida por kg8m, e sua principal característica é "A Chromium extension to show tab numbers.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Chrome Show Tab Numbers

Baixe arquivos de extensão Chrome Show Tab Numbers no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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 .                    

Informações Básicas da Extensão

Nome Chrome Show Tab Numbers Chrome Show Tab Numbers
ID pflnpcinjbcfefgbejjfanemlgcfjbna
URL Oficial https://chromewebstore.google.com/detail/chrome-show-tab-numbers/pflnpcinjbcfefgbejjfanemlgcfjbna
Descrição A Chromium extension to show tab numbers.
Tamanho do Arquivo 13.47 KB
Contagem de Instalações 1,363
Versão Atual 1.3.1
Última Atualização 2023-12-29
Data de Publicação 2022-04-28
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor kg8m
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/kg8m/chrome-show-tab-numbers
URL da Página de Ajuda https://github.com/kg8m/chrome-show-tab-numbers/issues
Idiomas Suportados 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"
        }
    }
}