Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

Pesquisar no site de suporte

Evite golpes de suporte. Nunca pedimos que você ligue ou envie uma mensagem de texto para um número de telefone, ou compartilhe informações pessoais. Denuncie atividades suspeitas usando a opção “Denunciar abuso”.

Saiba mais

Esta discussão foi arquivada. Faça uma nova pergunta se precisa de ajuda.

Hello. I wonder if it is possible to expand the size of a pinned tab. thank you

  • 2 respostas
  • 14 têm este problema
  • 13 visualizações
  • Última resposta de cor-el
  • Arquivado

Bonjour Je souhaiterais pouvoir agrandir ou tout simplement regler la largeur des onglets épinglés. Merci

Bonjour Je souhaiterais pouvoir agrandir ou tout simplement regler la largeur des onglets épinglés. Merci

Todas as respostas (2)

Hello Showyouken, i found 2 add-ons :

Custom Tab Width add-on

Tab Utilities add-on

check it if is helpful


thank you

I do not think that the extension will work for pinned App tabs (only for normal not pinned tabs).

Why do you want to change the width of such pinned tabs and to which width?

Try code like this in the userChrome.css file below the default @namespace line (not tested).

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

.tabbrowser-tabs[positionpinnedtabs] > .tabbrowser-tab[pinned]{
 max-width: 250px !important;
 width: 100px !important;
}