Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Tìm hiểu thêm

Hide Email in the Menu

more options

The whole showing my email at the top when I click the menu button (≡) isn't very cool. Is there a way to just make it show my Display Name instead of having it just show my email there?

The Display Name won't appear until AFTER clicking on the email address.

The whole showing my email at the top when I click the menu button (≡) isn't very cool. Is there a way to just make it show my Display Name instead of having it just show my email there? The Display Name won't appear until AFTER clicking on the email address.
Đính kèm ảnh chụp màn hình

Tất cả các câu trả lời (1)

more options

Hi oh ok, I'm not aware of any way to show the user name instead of the email address.

You might be able to "hack" the menu to show an arbitrary string of text there, using a userChrome.css file, but this would need to be hand-coded because that section of the menu doesn't have your username nearby to swap in.

As a crude example that certainly needs some refinement:

/*** MAIN MENU MODS - Firefox Account ***/
/* Hide email address */
#appMenu-fxa-status[fxastatus="signedin"] #appMenu-fxa-label .toolbarbutton-text {
  visibility: hidden !important;
}
/* Inject custom text */
#appMenu-fxa-status[fxastatus="signedin"] #appMenu-fxa-label::before {
  content: "Secret Agent Man";
  position: absolute;
  left: 36px;
  top: 10px;
}

yielding: