מוצגות שאלות עם התגיות: הצגת כל השאלות

How to Disable the Privacy / Incognity Window

Hello! My name is Anya. I am desperately trying to manage my social media addiction and to help support that I am wondering if its possible to disable the privacy window.… (read more)

Hello! My name is Anya. I am desperately trying to manage my social media addiction and to help support that I am wondering if its possible to disable the privacy window. I know I can install a website blocker - which I have, but it does not apply to the private window so I have full access to social media on it, I just have to log in. I want to COMPLETELY block Facebook and Instagram off of my laptop. Is this possible? Thank you!

Asked by anya.cherepanova131018 לפני 4 ימים

Last reply by NoahSUMO לפני 2 שעות

Toggling visibility of the URL bar and tabs via the bookmarks toolbar visibility setting [SOLVED]

tl:dr Here's the CSS to put in userChrome.css file. This is the "hides everything" option. See toward the end of this post for others. navigator-toolbox:has(#PersonalT… (read more)

tl:dr Here's the CSS to put in userChrome.css file. This is the "hides everything" option. See toward the end of this post for others.

  1. navigator-toolbox:has(#PersonalToolbar[collapsed="true"]) {
 visibility: collapse;

}


+++

I was looking for a way to hide the nav bar and ran across this older forum topic (https://support.mozilla.org/en-US/questions/1288181).

The solution shown here seems to be non-functional these days (early 2024), but it gets us in the right direction, so below is the code for us to look at.

  1. main-window[chromehidden*="toolbar"] #nav-bar {
 visibility: collapse;

}

This is CSS, meant to be copied into a text document, itself placed in a folder called "chrome" that you'll need to create in your browser's active profile folder. Per step 6 in the instructions (https://www.userchrome.org/how-create-userchrome-css.html) linked by @jscher2000 in the above-linked forum topic, you'll also need to set toolkit.legacyUserProfileCustomizations.stylesheets to "true" in about:config. If you don't know what about:config is, this is a good example to get started, but I'm not going to explain it here.

This CSS code selects the object with ID #main-window, with an HTML attribute "chromehidden" equal to "toolbar", and sets its CSS property "visibility" to "collapse". Apparently Mozila have changed the way they implement toolbar hiding, as this no longer works — this chromehidden attribute is nowhere to be found in the HTML that drives the Firefox interface, not sure if that's the place to look for it, but I think so. Anyway, we need to dig around in this interface HTML ourselves to see what changes when hiding the bookmarks toolbar, so we can adapt a new method to what's going on in the browser now.

To do so, we open a window within a window (chrome://browser/content/browser.xhtml) and run the inspector via Web Developer Tools. Comparing the HTML we see here with the bookmarks toolbar in each state (I used BBEdit to compare the texts), we see that the object with ID #PersonalToolbar experiences a change in its "collapsed" attribute when we hide/show the bookmarks toolbar. So in our CSS code, we shift our strategy to update the "collapse" CSS property for #navigator-toolbox whenever it contains a #PersonalToolbar object with its own "collapsed" attribute set to "true", which occurs whenever we hide the bookmarks toolbar. Somewhat surprisingly, this approach of updating the CSS property seems to auto-reset on its own when the "collapsed" attribute is set back to "false", which occurs when we show the bookmarks toolbar again. In other words, it simply toggles with the visibility setting of the bookmarks toolbar, and we don't have to write any further code.

If you're interested in hiding some other UI element when hiding the bookmarks toolbar, you can modify this code to do stuff like that (but to go beyond the below examples you'll need to suss out the object IDs, CSS properties, and HTML attributes — and maybe more, depending on what you're trying to do — on your own).

But for convenience, here's an example that hides just the tabs:

  1. navigator-toolbox:has(#PersonalToolbar[collapsed="true"]) #titlebar {
 visibility: collapse;

}


Here's one that hides just the URL bar:

  1. navigator-toolbox:has(#PersonalToolbar[collapsed="true"]) #nav-bar {
 visibility: collapse;

}


Since those are the only other two things in the #navigator-toolbox to be hidden, I suppose that means we now have all options on the table (at least the way I have the browser set up). Enjoy!

Asked by firefox.anon8f8 לפני 2 ימים

Last reply by firefox.anon8f8 לפני 2 ימים

Disable shortcut or reasign it - Moves the URL left or right

Hey, Is it possible to disable a specific shortcut or change its assigned other keys? I wanted to disable the "Moves the URL left or right". It turns out that this func… (read more)

Hey,

Is it possible to disable a specific shortcut or change its assigned other keys?

I wanted to disable the "Moves the URL left or right". It turns out that this functionality won't be useful to me, but this shortcut is the one that I use the most :/

https://support.mozilla.org/en-US/kb/keyboard-shortcuts-perform-firefox-tasks-quickly

Thanks,

Asked by anotherthing לפני שבוע

Picture in picture not working

Whenever I use the picture in picture feature, it always opens up in a bigger tab instead of the floating PiP. I am unable to adjust the sizing whatsoever. Is there a way… (read more)

Whenever I use the picture in picture feature, it always opens up in a bigger tab instead of the floating PiP. I am unable to adjust the sizing whatsoever. Is there a way to get around that?

Asked by Raymond Boheme לפני שבוע

Last reply by Raymond Boheme לפני שבוע

Use ABOUT:CONFIG to keep Same Page Size/Location from last Closed page

If I Close (not Exit) FF and then later Open it, the new Open page is a different size and screen location than when it was last closed (I have to then reposition the pag… (read more)

If I Close (not Exit) FF and then later Open it, the new Open page is a different size and screen location than when it was last closed (I have to then reposition the page manually).

Is there a ABOUT:CONFIG setting I can can change to stop this?

Asked by Michael Jonas לפני שבוע

Double Click to Mimimize Broken on Mac OS Sonoma

I have always been able to use the Mac setting to Double Click Title Bar to Minimize windows and it's always worked fine with Firefox. Until Sonoma, but with a stipulatio… (read more)

I have always been able to use the Mac setting to Double Click Title Bar to Minimize windows and it's always worked fine with Firefox. Until Sonoma, but with a stipulation.

It will not respond at all to a double click, but ONLY when I have chosen to show the title bar in Firefox. It works fine clicking in the tab plane as long as I have Show title bar turned off. This is a bit bizarre, but it appears a recent update of Firefox no longer works like that in Sonoma. Works fine on a Windows 10 machine and on a Mac running an older OS.

Note that I did do all the proper troubleshooting, reset Firefox, start in safe mode and all to no avail. When Show Title Bar is turned on, double click to minimize simply does not work.

Asked by info2825 לפני שבוע

Theme

I have enabled my new Theme but it keeps defaulting back to my old Theme. I have tried closing Firefox and opening new tabs. Opening a new tab also changes it back to the… (read more)

I have enabled my new Theme but it keeps defaulting back to my old Theme. I have tried closing Firefox and opening new tabs. Opening a new tab also changes it back to the default theme. I have sent an image of the old theme. The new theme is Aurora Australis. And the second image shows this Theme enabled. What gives? Carl

Asked by carl_hci לפני 2 שבועות

Last reply by carl_hci לפני 2 שבועות

How do I include page contents in URL bar history search?

I want firefox to not only cache the URL and page title, but also cache the page contents, so that if I do a URL bar search for a word that was only contained in a page t… (read more)

I want firefox to not only cache the URL and page title, but also cache the page contents, so that if I do a URL bar search for a word that was only contained in a page that a visited (not in the title or url) firefox finds it. Apparently chrome already does this. Why doesn't firefox? I can't even find a add-on that does this for firefox.

Asked by david.d.campbell לפני 2 שבועות

  • נפתרה

The new apostrophe quicksearch-function is a problem for me

Hello There seems to be a new function that opens a quick search window when I press the apostrophe key. This function is active on many websites, and I am using Firefo… (read more)

Hello

There seems to be a new function that opens a quick search window when I press the apostrophe key. This function is active on many websites, and I am using Firefox 125.0.3 on a Macbook Air.

This new function makes it very difficult for me to practice touch typing in Firefox, and I would like to turn this function of.

Best regards Max Andersson

Asked by Max Andersson לפני 2 שבועות

Answered by TyDraniu לפני 2 שבועות

  • נפתרה

Setting Startpage as search engine

What's the best way to set up Startpage private search in Firefox? Should I manually change the settings or install the extension? Also, it seems like Firefox could impro… (read more)

What's the best way to set up Startpage private search in Firefox? Should I manually change the settings or install the extension? Also, it seems like Firefox could improve the process for us.

Asked by gregcane90 לפני 2 שבועות

Answered by jscher2000 - Support Volunteer לפני 2 שבועות

Tabs bar is scrolling

I can't find a way to disable tabs scrolling. This is highly confusing, I have to always look for my tabs and do extra clicks and scrolling. This is very distracting. Als… (read more)

I can't find a way to disable tabs scrolling. This is highly confusing, I have to always look for my tabs and do extra clicks and scrolling. This is very distracting. Also those two buttons - "<" & ">" - they occupy extra space. The left one is especially annoying because I expect a "+ new tab" button to be there. I don' want to test/use this new experimental feature, how can I turn this off? Thank you.

Asked by Arseniy Fomchenko לפני 3 שבועות

Last reply by jscher2000 - Support Volunteer לפני 2 שבועות

How to add a shortcut to Proton Mail sign in, to my MacOS 14 dock to use in Firefox for Mac

I use a MacBook AIr with OS 14.4.1 (Sonoma) and want to add a short cut link to Proton Mail (Free version) that I can put in my MacOS Dock. I am using Firefox 125.03 vers… (read more)

I use a MacBook AIr with OS 14.4.1 (Sonoma) and want to add a short cut link to Proton Mail (Free version) that I can put in my MacOS Dock. I am using Firefox 125.03 version.

I used to have a link in my Mac Dock but then I tried the trial of their desktop app-- and when that ended recently, I did not know how to set the Dock link up again. I tried directions for other browsers but they did not help.

'The link I want the short cut to go to is' https://account.proton.me/mail so I can sign right in to check my email.

So I checked Proton's support site for help but it has directions to do this ONLY from Safari and another browser, NOT Firefox.

If you can give me some straightforward directions to add the shortcut to Proton Mail sign in back to my Mac Dock, I would be grateful!

I really enjoy and feel safer using Firefox, by the way! thank you

Howard Mangel

Asked by HowardNJ לפני 3 שבועות

Last reply by cor-el לפני 3 שבועות

Trying to set my tab close button to the left

I am using theme called WhiteSur to imitate Safari, as that is the browser layout I prefer. However, this doesn't change the position of the close tab button and leaves i… (read more)

I am using theme called WhiteSur to imitate Safari, as that is the browser layout I prefer. However, this doesn't change the position of the close tab button and leaves it on the right hand side. I found a way to change it, using the code .tabbrowser-tab .tab-close-button {

 margin-left: -5px !important;
 margin-right: 2.5px !important;

} Unfortunately, this doesn't change based on the size of the tab, so if I set it to a size that is good for only having 1 tab, it will look bad or be off the screen for the other amounts of tabs. Is there a way to detect the width of the tab or the amount of tabs open and dynamically set the margins based off of this? So I could set it as (width-of-tab)-x and that would always keep the close tab button in the same spot, regardless of tab size. Thanks!

Asked by williamoflowden לפני 3 שבועות

Last reply by jscher2000 - Support Volunteer לפני 3 שבועות

  • Archived

New Tab Addon Button Missing

i use New Tab Override, reinstalled my software, firefox, and lost the button to get a new tab that goes on the address bar. its no longer in customize. ive removed the a… (read more)

i use New Tab Override, reinstalled my software, firefox, and lost the button to get a new tab that goes on the address bar. its no longer in customize. ive removed the addon and put it back on, started in troubleshoot mode, disabled all other addons, and it never showed back up

can someone help, the guy who made it wont help

Asked by tunescool לפני 6 חודשים

Last reply by PMDonovan לפני 3 שבועות

Icon of Firefox Multi-Account Containers won't show up on top of screen

Hi, I've been trying to get the Multi-Account Containers Add On to work on my computer for quite some time. Would be very handy for me. When I add the Add On to my browse… (read more)

Hi, I've been trying to get the Multi-Account Containers Add On to work on my computer for quite some time. Would be very handy for me. When I add the Add On to my browser the icon on the top right of the screen just won't show up. Don't know what I've been doing wrong...? How can I access the container settings someway else? I've made changes to my FF settings in regards to privacy via the recommendation from Sun Knudsen but don't really see an issue here. Thanks in advance!

macOS 10.15.7, Firefox 125.0.3

Asked by Chrstph לפני 4 שבועות

Last reply by cor-el לפני 4 שבועות

default startup page keeps changing

The attached photo shows the startup page that appeared today, yesterday that page had 12 of my most frequent websites loaded in place of the ones you see now. This page … (read more)

The attached photo shows the startup page that appeared today, yesterday that page had 12 of my most frequent websites loaded in place of the ones you see now. This page keeps changing on me and it's infuriating to have to remake it every few months.

What is going on??

AB

Asked by AB לפני 4 שבועות

Last reply by zeroknight לפני 4 שבועות

  • נעול

Tineye worked great until i created a new account, now it won't work says "allow cookies' and I don't know how

PLEASE READ THOROUGHLY - Thru Firefox, I use Tineye to find related photos - I use it all the time, it's been great - I always use a VPN and have never had problems until… (read more)

PLEASE READ THOROUGHLY - Thru Firefox, I use Tineye to find related photos - I use it all the time, it's been great - I always use a VPN and have never had problems until now (as of yesterday). Now it won't search, a verify you're human window comes up, and I have to keep clicking squares, which I do - but then it says to allow cookies and start over. Well I don't want to allow cookies (Firefox-Mozilla kinda encourages using their tools to block cookies, which I much prefer), and I CANT FIND WHERE TO ALLOW (not yelling its just that I said this before and it wasn't noticed) cookies even if I did (I went to Firefox preferences all I could find was under privacy & security cross-site cookies but that did nothing) and I don't want to disable my VPN. Maybe I should mention that I just added or started a Mozilla account, as I have had immense trouble with my aol emails, and am trying to move everything over to a gmail account. My sign in to Firefox was the aol email, and I had to try (I thought I did it) add another account, which I think I did successfully. So it was right after that, that all this started. Help please! Thank you! I did get the following reply, saying to allow cookies (BUT I DON"T KNOW HOW OR WHERE TO DO IT) and something about a new browser profile and to stay out of my sync account, and I APOLOGIZE, but I have no clue what all that means. What is a broweser profile, what is a sync account and how do I stay out of it? I guess well I know i'm not too smart about this kinda stuff, so I apologize but I think I need detailed step by step what to do to fix this. I know thats a lot of typing, sorry.

Asked by PocketDan לפני 4 שבועות

Last reply by NoahSUMO לפני 4 שבועות

Full-screen transition not disabling

I have recently refreshed Firefox on my laptop running MacOS. Previously I had changed the full-screen-transition in about:config to be zero, but since refreshing changin… (read more)

I have recently refreshed Firefox on my laptop running MacOS. Previously I had changed the full-screen-transition in about:config to be zero, but since refreshing changing the setting hasn't disabled the transition. My config is this currently: full-screen-api.transition-duration.enter 0 0 full-screen-api.transition-duration.leave 0 0 full-screen-api.transition.timeout 0 Despite everything being like before the transition persists... I'm currently on the latest version of Firefox (125.0.3)

Asked by yotam42 לפני חודש

Last reply by zeroknight לפני חודש

Weird fullscreen animation on mac

So on my macbook when I enable fullscreen the anmation is super weird. first it stretches the video to the top and then just expands to the whole screen, when I go out of… (read more)

So on my macbook when I enable fullscreen the anmation is super weird. first it stretches the video to the top and then just expands to the whole screen, when I go out of fullscreen is stretches to the bottom and then goes out off fullscreen. for example on safari it just expands the video until it takes up the whole screen. I have gone in about:config and disabled the fullscreen animation but that did nothing.

Asked by senne1009 לפני חודש

Last reply by zeroknight לפני חודש