顯示下列標籤的問題: 顯示所有問題

Extensions Greyed Out

Hi, I've recently downloaded firefox and trying to add extensions that were similar to the ones I used on chrome. My problem is that all the extensions (Hoverzoom, Short … (閱讀更多)

Hi, I've recently downloaded firefox and trying to add extensions that were similar to the ones I used on chrome. My problem is that all the extensions (Hoverzoom, Short Keys) in the extensions tab in the toolbar and appear to not be working (both in private and normal browsing). However the extensions (Ublock, SponsorBlock) that have their own icon on the toolbar seem to be working fine.

I've attached a reference image,

Any help would be greatly appreciated.

adidbz 於 1 天前 詢問

MarkRH 最近回覆於 1 天前

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.… (閱讀更多)

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!

anya.cherepanova131018 於 6 天前 詢問

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… (閱讀更多)

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!

firefox.anon8f8 於 4 天前 詢問

firefox.anon8f8 最近回覆於 4 天前

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… (閱讀更多)

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,

anotherthing 於 1 週前 詢問

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… (閱讀更多)

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?

Raymond Boheme 於 2 週前 詢問

Raymond Boheme 最近回覆於 1 週前

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… (閱讀更多)

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?

Michael Jonas 於 1 週前 詢問

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… (閱讀更多)

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.

info2825 於 2 週前 詢問

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… (閱讀更多)

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

carl_hci 於 2 週前 詢問

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… (閱讀更多)

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.

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… (閱讀更多)

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

Max Andersson 於 2 週前 詢問

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… (閱讀更多)

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.

gregcane90 於 2 週前 詢問

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… (閱讀更多)

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.

Arseniy Fomchenko 於 3 週前 詢問

jscher2000 - Support Volunteer 最近回覆於 3 週前

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… (閱讀更多)

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

HowardNJ 於 3 週前 詢問

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… (閱讀更多)

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!

williamoflowden 於 3 週前 詢問

jscher2000 - Support Volunteer 最近回覆於 3 週前

  • 封存

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… (閱讀更多)

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

tunescool 於 6 個月前 詢問

PMDonovan 最近回覆於 4 週前

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… (閱讀更多)

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

Chrstph 於 1 個月前 詢問

cor-el 最近回覆於 1 個月前

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 … (閱讀更多)

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

AB 於 1 個月前 詢問

zeroknight 最近回覆於 1 個月前

  • 被鎖定

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… (閱讀更多)

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.

PocketDan 於 1 個月前 詢問

NoahSUMO 最近回覆於 1 個月前

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… (閱讀更多)

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)

yotam42 於 1 個月前 詢問

zeroknight 最近回覆於 1 個月前