Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

How do I create an additional "Open a New Tab +" button other than the default one?

  • 6 답장
  • 6 이 문제를 만남
  • 1 보기
  • 최종 답변자: sumella

more options

I have done this before, but I can't remember how I can create an additional "Open a New Tab" button and therefore add another + to the toolbar. Please help!

I have done this before, but I can't remember how I can create an additional "Open a New Tab" button and therefore add another + to the toolbar. Please help!

모든 댓글 (6)

more options

Hi sumella,
I think you should try an Add-on like one of these:
Tab Mix Plus
New Tab Button on tab bar

more options

Thank you alco for the Add-ons. I remember doing something to Firefox script to duplicate the new tab button but I forgot :-(

Thanks!

more options

You can drag the New Tab button from the Tab bar on another toolbar and use this code in userChrome.css to make both New Tab buttons visible.

Add code to the userChrome.css file below the default @namespace line.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.


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

/* show New Tab button on toolbar */
#new-tab-button { visibility: visible !important; }
/* show New Tab button on tab bar */
.tabs-newtab-button { visibility: visible !important; }
more options

Hi Cor-el, perhaps I am doing something wrong :-( I tried the above but it doesn't seem to work for me. I had to create the chrome folder in my profile folder, and then add the userChrome.css file however. I dragged the tab button which is the + onto another toolbar, but the original does not show even after the css modification. Please help :-) Thanks.

more options

Works for me with the default theme if there aren't a lot of tabs open (no scroll buttons).
If you use tab related extensions that maintain their own buttons then it may not work.
You should see two plus buttons on the tab bar if the code is working properly, one right after the last tab (that one may disappear if you open enough tabs to make scroll buttons appear) and a second plus right after the last tab.

Does other code in the userChrome.css file work?

more options

Thank you cor-el. That was my bad. I forgot to change the extension to css as notepad creates .txt as a default. Thank you it works great! :-)