לאתר זה תהיה פונקציונליות מוגבלת בזמן שאנו מתחזקים אותו לשיפור החוויה שלך. אם מאמר מסויים לא פותר את הבעיה שלך וברצונך לשאול שאלה, קהילת התמיכה שלנו מחכה לעזור לך ב־Twitter תחת ‎@FirefoxSupport וב־Reddit תחת ‎/r/firefox.

חיפוש בתמיכה

יש להימנע מהונאות תמיכה. לעולם לא נבקש ממך להתקשר או לשלוח הודעת טקסט למספר טלפון או לשתף מידע אישי. נא לדווח על כל פעילות חשודה באמצעות באפשרות ״דיווח על שימוש לרעה״.

מידע נוסף

Change about:home page Title

  • 6 תגובות
  • 2 have this problem
  • 1 view
  • תגובה אחרונה מאת Quisquose

more options

What CSS code would I need to use to change the Page Title of the about:home page?

Currently Firefox displays the text "Mozilla Firefox Start Page" on the tab when about:home is opened. I would like to change that text to something else.

Thanks

What CSS code would I need to use to change the Page Title of the about:home page? Currently Firefox displays the text "Mozilla Firefox Start Page" on the tab when about:home is opened. I would like to change that text to something else. Thanks

כל התגובות (6)

more options

I don't think CSS can change a text node (i.e., text between the <title> and </title> tags).

This doesn't work either (attempting to insert text before the existing text):

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url("about:home") {
  title::before {
    content: "Hello There -- ";
  }
}
more options

Oh, I see.

I found some CSS code to change text for items on the about: addons page, and so I thought that it might be possible to do something similar for a page title too.

Would it have to be done with javascript? and if so, how?

I'm afraid my javascript skills are as non-existent as my CSS skills.

Thanks.

השתנתה ב־ על־ידי Quisquose

more options

It's easy to change the document title with JavaScript:

document.title="Hello Friend";

However, Greasemonkey might not run on about:home. https://wiki.greasespot.net/Include_and_exclude_rules#Greaseable_schemes

Maybe there is a different add-on to modify the title?

more options

You might try this forum, as their CSS hacking skills are more advanced than mine: https://forum.userstyles.org/discussions

more options

Thanks for the clarification and link.

I was hoping that it would be simple to achieve with GreaseMonkey, but apparently not (due to 'about' pages being excluded).

I will try the userstyles forum as you suggest. I have had very helpful replies there in the past.

more options

Quisquose said

I will try the userstyles forum as you suggest. I have had very helpful replies there in the past.

I spoke too soon!