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

Pesquisar no apoio

Evite burlas no apoio. Nunca iremos solicitar que telefone ou envie uma mensagem de texto para um número de telefone ou que partilhe informações pessoais. Por favor, reporte atividades suspeitas utilizando a opção "Reportar abuso".

Saber mais

Adnotations

Is there a functionality where I could change a name of a tab? I'm working on many tabs and all of them have the same name. It would be great to change names so navigation could be faster.

Is there a functionality where I could change a name of a tab? I'm working on many tabs and all of them have the same name. It would be great to change names so navigation could be faster.

Todas as respostas (2)

Solução escolhida

If you didn't want to use an add-on, you also could change the page title temporarily (until the next page load) using a bookmarklet. That's a script you save on your Bookmarks Toolbar or Bookmarks Menu as a one-click function. For example, this script:

var n = prompt('New Title? (Enter undo to revert to previous)', document.title); 
if (n){
  if (n != 'undo'){
    if(document.oldTitle) document.oldTitle.push(document.title);
    else document.oldTitle = [document.title];
    document.title = n;
  } else {
    if(document.oldTitle && document.oldTitle.length > 0) document.title = document.oldTitle.pop();
  }
}


As a bookmarklet, you add a bit at the beginning and end:

javascript:var n = prompt('New Title? (Enter undo to revert to previous)', document.title); if (n){if (n != 'undo'){if(document.oldTitle) document.oldTitle.push(document.title);else document.oldTitle = [document.title];document.title = n;} else {if(document.oldTitle && document.oldTitle.length > 0) document.title = document.oldTitle.pop();}}void 0;

For easier installation, I added it to my page here:

https://www.jeffersonscher.com/res/sumomarklets.html#tabtitle