Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Learn More

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

Rename "Restore Session" page title

  • 6 risposte
  • 1 ha questo problema
  • 6 visualizzazioni
  • Ultima risposta di S.J.

more options

Hi,

Is it possible to change the "Restore Session" page title using userContent.css (or other means that doesn't need to be added every time I update)?

Thanks.

Hi, Is it possible to change the "Restore Session" page title using userContent.css (or other means that doesn't need to be added every time I update)? Thanks.

Tutte le risposte (6)

more options

Do you mean the title as shown on the tab and in the title bar? That is not possible AFAIK (WebExtensions do not work with about pages and chrome:// URIs).

more options

Yes.

I'm not looking for an addon, I was hoping it can be done using userContent.css since I've already customized this page with it, and what I need is to add a few letters to the title.

I've tried ::after selector but I can't get it to work (it works for other elements).

more options

Is this for the title that shows in the tab?

more options

Yes, I want to add a few letters to it, for example: "Restore Session" becomes "Restore Session - PF1"

Which is why I tried the ::after content.

more options

Does this code in userChrome.css work for you?

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

.tabbrowser-tab[label^="Restore Session"] .tab-text{visibility:collapse}
.tabbrowser-tab[label^="Restore Session"] .tab-content:after{content:"Restore Session - PF1"}
more options

The problem is that the window taskbar button is still showing only "Restore Session", which is why I think it must be done using userContent.css (or maybe a script loaded by it?).

Is there another way to do it?


Thank you for your help.