Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

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.

தீர்வு தேர்ந்தெடுக்கப்பட்டது

All Replies (2)

தீர்வு தேர்ந்தெடுக்கப்பட்டது

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