Тёмный

Firefox - How To Hide Tabsbar 

IT Dominator
Подписаться 416
Просмотров 8 тыс.
50% 1

ITDominator Website:
www.itdominator.com/
Twitter:
/ itdominator

Хобби

Опубликовано:

 

17 апр 2020

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 38   
@LoTzzzzzzz
@LoTzzzzzzz 7 месяцев назад
This didnt work for me, but i found a slightly different variation of the code that solved it /* hides the native tabs */ #TabsToolbar { visibility: collapse; } Hopefully this helps someone who was stuck in my position!
@dominika7061
@dominika7061 3 года назад
Thanks for the video! I use it on every new machine.
@ITDominator
@ITDominator 3 года назад
Same!
@aleesjaved
@aleesjaved Год назад
Thanks so much this helped! Also for anyone on mac you have to open the default release folder then create the chrome folder. Hopes this helps!
@ITDominator
@ITDominator Год назад
This is correct but wasn't as clear in the video that I did that. Good call out!
@rachelcoxhead6479
@rachelcoxhead6479 2 года назад
This worked well for hiding the tab bar but it also hid the control buttons (close/minimize)! Any ideas how I can bring them back without bringing back the tabs? Edit: I found a fix, rather than the code in the video replace with: #main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar > .toolbar-items { opacity: 0; pointer-events: none; }
@ITDominator
@ITDominator 2 года назад
Glad you found a solution to your needs! I use a custom plugin that gives me control of my tabs which is why I don't need the close and hide buttons. If interested it's one I wrote and is this: addons.mozilla.org/en-US/firefox/addon/tab-search-and-manage/
@LordErdbeere
@LordErdbeere 2 года назад
Neither works for me, I use it on windows and the first solution just makes my firefox turn invisible and your solution does nothing for me. Any Ideas that could help?
@pbr4730
@pbr4730 2 года назад
@@LordErdbeere This code worked for me, and I hid the control buttons because I prefer to use keyboard shortcuts for that. If you want to see the control buttons change display to "block". #tabbrowser-tabs { visibility: collapse !important; } #titlebar { appearance: none !important; height: 0px; } #titlebar > #toolbar-menubar { margin-top: 0px; } #TabsToolbar { min-width: 0 !important; min-height: 0 !important; } #TabsToolbar > .titlebar-buttonbox-container { display: none; position: absolute; top: 12px; left: 0px; }
@LordErdbeere
@LordErdbeere 2 года назад
@@pbr4730 I’ll have a look into that if it works, gonna tell you how it worked Edit: It didn't work, but mybe I have it in the wrong folder, because in my folder vs the folder of firefox in the vids, there are more folders inside, not by me tho, so it's interesting
@aleesjaved
@aleesjaved Год назад
Thanks so much for this code it helped me with my problem!
@M2dScientist
@M2dScientist 3 года назад
Very useful, thank you!
@ITDominator
@ITDominator 3 года назад
Glad to hear that! =D
@nub1vagant
@nub1vagant Год назад
Do you have a link to the specific addon that lets you manage your tabs from your UI?
@AnotherAgnostic
@AnotherAgnostic 2 года назад
Thank you so much
@ITDominator
@ITDominator 2 года назад
You're most welcome!!
@NewLife-hm8ey
@NewLife-hm8ey 8 месяцев назад
How to hide address bar
@RobotTechHead
@RobotTechHead 3 года назад
I followed all the steps, including the about:config and true value. I'm not sure where I've gone wrong, but it still doesn't work. Any help is appreciated.
@johnpaulabadines3610
@johnpaulabadines3610 2 года назад
Had the same problem. Check the file type. If you're in windows, open notepad, copy and paste the code and save as "userChrome.css" under all file types. It shouldn't say text document .txt
@ITDominator
@ITDominator 2 года назад
Great catch as Windows does do weird stuff like add .txt at the end of files.
@RobotTechHead
@RobotTechHead 2 года назад
@@johnpaulabadines3610 Thanks for the help!
@rippernmode8015
@rippernmode8015 2 года назад
@@johnpaulabadines3610 still doesnt work for me, saved as a css file
@LoTzzzzzzz
@LoTzzzzzzz 7 месяцев назад
@@rippernmode8015 Sorry this is a year late, but i had the same problem and i found a slightly different code that worked for me /* hides the native tabs */ #TabsToolbar { visibility: collapse; } Copy paste that and see if it solves it
@shorter2051
@shorter2051 3 года назад
Your volume in the intro is way too loud. I am deaf now.
@ITDominator
@ITDominator 3 года назад
👍 💪 👌
@ITDominator
@ITDominator 3 года назад
Get it? Sign language?
@monochrome_linux
@monochrome_linux 3 года назад
dude fucking same, i was on full volume. felt like i was in skyrim for a second
@danizimo
@danizimo Год назад
doesn't work there's still a black bar on top
@anonymousofthecentury3906
@anonymousofthecentury3906 2 года назад
I love your intro! how'd you make it?
@ITDominator
@ITDominator 2 года назад
I used Blender. =) Through it I did a text to mesh, subdivided it, deformed it, and added a glossy node as well as mix that with a Creeper image texture. I animated the coordinates of the Creeper image to give the waterfall effect. Below the text I added a transparent glossy plane mesh. For the stars I just followed some tutorial on Blender but did add additional color ramp values. From there I just animated the camera to follow a path at the four cardinal points with a speed curve that I don't recall off the top of my head.
@anonymousofthecentury3906
@anonymousofthecentury3906 2 года назад
@@ITDominator Thanks for your input, you've earned yourself a sub
@conradclassey4471
@conradclassey4471 2 года назад
@ITDominator
@ITDominator 2 года назад
Just seeing this comment, thank you for the heart!
@user-le1yv8qm9l
@user-le1yv8qm9l 7 месяцев назад
here is a better fix that shows the minimize,close and expand at the top right corner and hides the tabs aswell /* Hide the tab bar and space */ #main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar { visibility: collapse !important; } /* Adjust the browser content area to fill the space */ #browser { margin-top: 0 !important; } /* Show the window controls (minimize, maximize, close) */ .titlebar-buttonbox-container { visibility: visible !important; position: fixed !important; right: 0 !important; top: 0 !important; margin: 5px !important; /* Adjust margin as needed */ } /* Move the window controls to the right */ .titlebar-buttonbox { margin-left: auto !important; margin-right: 5px !important; } /* Add margin below the title bar buttons */ #nav-bar { margin-top: 25px !important; }
Далее
Редакция. News: 124-я неделя
52:01
Просмотров 1,9 млн
Making Firefox Great Again
15:21
Просмотров 371 тыс.
Secret Feature That Makes Firefox Bookmarks Awesome!
13:42
Internet Addresses DON'T Need Dots!
5:10
Просмотров 1 млн
How to Browse the Internet Anonymously
12:32
Просмотров 1,7 млн
The Man Who Solved the World’s Hardest Math Problem
11:14
How To Become Invisible Online
24:06
Просмотров 2,8 млн
10 GREAT Ways To Improve Firefox
12:27
Просмотров 27 тыс.
The Most HATED Image Format
11:45
Просмотров 125 тыс.
Stunt Bike vs Trial Bike 🔥
0:32
Просмотров 27 млн