Fragen mit folgendem Schlagwort anzeigen: Alle Fragen anzeigen
  • Gelöst
  • Archiviert

Can't pin extensions to the tool bar (url bar)

Installed Firefox 122 in a new Windows 10 installation and added some extensions (e.g. Gesturefly, Update Scanner, uBlock Origin, Uppity). These pinned fine on my old in… (Lesen Sie mehr)

Installed Firefox 122 in a new Windows 10 installation and added some extensions (e.g. Gesturefly, Update Scanner, uBlock Origin, Uppity). These pinned fine on my old installation. But I cannot find how to pin them on the new.

All the help I have found Googling, or using search here, says go to the Add-ons Manager page and right-click the extension and use "pin to toolbar". Alternatively click the extension and click the gear icon and use "pin to toolbar". But when I right-click there is no pin to toolbar context menu entry. If I left-click the gear I get "Check for Updates, View Recent Updates, Install Add-on From File, Debug Add-ons, Update Add-ons Automatically, Reset All Add-ons to Update Automatically, Manage Extension Shortcuts". If I right-click the gear I get a line of icons (left, right, reload, star) followed by "Open Image in New Tab, Copy Image Link, Email Image, Save Page As, Select All, View Pate Source, Inspect Accessibility Properties, Inspect (Q)". If I right-click the extension in the Add-ons Manager page itself, I get a very similar list. In no case is there a pin to toolbar option.

How do I pin an extension, given the above? What have I messed up?

Gefragt von OneMoreName vor 1 Jahr

Beantwortet von cor-el vor 1 Jahr

  • Gelöst
  • Archiviert

Add tab sharing support for Google Meet

Hey there, long story short - nowadays it's crucial to support those who WFH, and most people use G Suit for company work. I personally have a few daily calls via Google … (Lesen Sie mehr)

Hey there, long story short - nowadays it's crucial to support those who WFH, and most people use G Suit for company work. I personally have a few daily calls via Google Meet and having the TAB sharing feature available is highly appreciated. I know this was requested a lot, but this is a real dealbreaker for many people.

What are your thoughts on this? Maybe it's somewhere in the roadmap already? Thanks!

Gefragt von pounds.oiler_0j vor 1 Jahr

Beantwortet von jscher2000 - Support Volunteer vor 1 Jahr

  • Gelöst
  • Archiviert

Change URL border color when focused

Hi All, I would like to change the url border color when it has the focus to blue. The code below works, except when you press Escape. After hitting Escape, the urlbar… (Lesen Sie mehr)

Hi All,

I would like to change the url border color when it has the focus to blue.

The code below works, except when you press Escape.

After hitting Escape, the urlbar still has the focus but its border changes back to gray. It should remain blue.

I would also like to remove the box-shadow after pressing Escape, when the urlbar is not expanded (to mimic the behavior of FF 88).

The url and search input fields also do the same goofy thing Windows 10 does - the cursor stops blinking after 5 blinks and remains frozen. Any way to remove that behavior and keep the cursor blinking? If not, no big deal, the other stuff above is more important.

Any code suggestions to get that behavior are welcome!

/* set the initial borders of the urlbar and search bar to gray */
#urlbar > #urlbar-background, #urlbar[breakout][breakout-extend] > #urlbar-background, #searchbar { border: 1px solid #a1a6b5 !important; outline: none !important; border-radius: 0px !important; }
/* set urlbar border to blue when focused */
#urlbar[breakout][breakout-extend] #urlbar-background {
   border-color: #0078d7 !important;
}

Gefragt von Slouch vor 1 Jahr

Beantwortet von jscher2000 - Support Volunteer vor 1 Jahr

  • Gelöst
  • Archiviert

Disable download finished notification

I want to disable notifications when a download is finished, however the key in about:config 'browser.download.manager.showAlertOnComplete' does not exist any more. Is th… (Lesen Sie mehr)

I want to disable notifications when a download is finished, however the key in about:config 'browser.download.manager.showAlertOnComplete' does not exist any more. Is there some other way to disable these notifications?

Gefragt von Robin_w151 vor 1 Jahr

Beantwortet von zeroknight vor 1 Jahr

  • Gelöst
  • Archiviert

Theme Changes Some Components to Dark-mode Despite Override

Hiya, I use a theme which some years ago (after a change in the way Firefox handles dark-mode preferences) changed all UI and websites to use dark-mode. I was able to ke… (Lesen Sie mehr)

Hiya,

I use a theme which some years ago (after a change in the way Firefox handles dark-mode preferences) changed all UI and websites to use dark-mode. I was able to keep using the theme, and mostly override this behavior by setting:

`layout.css.prefers-color-scheme.content-override = 1`

However, this didn't take for some components, such as the sidebar and bookmark editor window, which still continue to use dark-mode.

Is there any way to completely disable dark-mode everywhere, and still use my preferred theme?

Cheers, Afraz

Gefragt von afrazkhan vor 2 Jahren

Beantwortet von zeroknight vor 2 Jahren

  • Gelöst
  • Archiviert

Cannot add custom shortcut in Search -> Search Shortcut ; Windows 11

Hi so am using version 125.0.1 and on my windows 10 machine I can add custom Search Shortcuts (the Add button is present) but on my windows 11 machine, the same settings … (Lesen Sie mehr)

Hi so am using version 125.0.1 and on my windows 10 machine I can add custom Search Shortcuts (the Add button is present) but on my windows 11 machine, the same settings page the Add button is dissapeared... Is it a limitation for Windows 11 machines?

Gefragt von suji.lamech vor 1 Jahr

Beantwortet von jscher2000 - Support Volunteer vor 1 Jahr

  • Gelöst
  • Archiviert

Setting border color for focused URL Bar

Hi All, I'm trying to set the border color for my url & search bars to gray when non-focused, and blue when receiving the focus. The following code works for the se… (Lesen Sie mehr)

Hi All,

I'm trying to set the border color for my url & search bars to gray when non-focused, and blue when receiving the focus.

The following code works for the search bar, but the url bar is receiving a separate blue border around the gray border, instead of changing the color from gray to blue.

Can someone suggest how I might set the url bar to blue (just a single border, not the double it has now), both when it has focus and when it's expanded?

Thank you!

/* set non-focused url & search bars to gray border */
#urlbar > #urlbar-background, #urlbar[breakout][breakout-extend] > #urlbar-background, #searchbar { border: 1px solid #a1a6b5 !important; outline: none !important; border-radius: 0px !important; }
/* set focused search bar to blue border */
#urlbar-background, #urlbar[breakout][breakout-extend] > #urlbar-background:focus-within, #searchbar:focus-within { border: 1px solid #0078d7 !important; }
/* set focused url bar to blue border */
#urlbar-background, #urlbar[breakout][breakout-extend] > #urlbar-background:focus-within, #urlbar:focus-within { border: 1px solid #0078d7 !important; }

Gefragt von Slouch vor 1 Jahr

Beantwortet von Slouch vor 1 Jahr

  • Gelöst
  • Archiviert

disable tab detaching (tear-off) when dragging down

When i click on a tab, if I am not perfectly steady at the time of the click, Firefox opens the tab in a new windows. It happens several times a day, it's quite annoying.… (Lesen Sie mehr)

When i click on a tab, if I am not perfectly steady at the time of the click, Firefox opens the tab in a new windows. It happens several times a day, it's quite annoying. Searching for solutions in the support page, I've found that there was an add-on to disable this function, but now it's not available anymore. Is there a solution in 2024?

Gefragt von odioidentisti vor 1 Jahr

Beantwortet von zeroknight vor 1 Jahr

  • Gelöst
  • Archiviert

Scroll bar doesn't show unless cursor is there, and the old setting under "browsing" seems to be missing.

My V123 for W11 doesn't show the vertical scroll bar unless the cursor is there. There's no "always show scroll bar" option in under general/browsing. Is this a glitc… (Lesen Sie mehr)

My V123 for W11 doesn't show the vertical scroll bar unless the cursor is there. There's no "always show scroll bar" option in under general/browsing.

Is this a glitch? Can it be fixed?

Gefragt von postedit vor 1 Jahr

Beantwortet von zeroknight vor 1 Jahr

  • Gelöst
  • Archiviert

How to stop Firefox from going to an already open tab when trying to open the same site again ?

How to stop Firefox from going to an already open tab when trying to open the same site again ? yes i want 10 tabs open on the same site, stop switching to one ope… (Lesen Sie mehr)

How to stop Firefox from going to an already open tab when trying to open the same site again ?

yes i want 10 tabs open on the same site, stop switching to one open tab. i discovered i hold shift/alt ti prevent this, there must be an option to disable it altogether, how?

Gefragt von vova.95bigmir.net vor 1 Jahr

Beantwortet von TyDraniu vor 1 Jahr

  • Gelöst
  • Archiviert

Add eyedropper tool to toolbar

the built in eyedropper tool is the simplest and easiest solution to grabbing screen colors without granting file permission to 3rd party solutions for full funcionality.… (Lesen Sie mehr)

the built in eyedropper tool is the simplest and easiest solution to grabbing screen colors without granting file permission to 3rd party solutions for full funcionality. I have power-toys but I hate to see this tool needlessly depreciated. My workflow needs to sample many colors at a time making the menu navigation needless. PLEASE let there be a way to add it to the toolbar, I hope there is. Thanks for your time

Gefragt von bromraven vor 1 Jahr

Beantwortet von zeroknight vor 1 Jahr

  • Gelöst
  • Archiviert

Reader View Icon

I accidentally right clicked and hit "Remove from Address Bar" on the Reader View icon and now it's gone. I tried typing "about:config" into the browser and searching "re… (Lesen Sie mehr)

I accidentally right clicked and hit "Remove from Address Bar" on the Reader View icon and now it's gone. I tried typing "about:config" into the browser and searching "reader" then selecting the "reader.parse-on-load.force-enabled" toggle to "true" and that didn't get it back. Is there a way I can get it back?

Gefragt von RogerN04 vor 3 Jahren

Beantwortet von cor-el vor 2 Jahren

  • Gelöst
  • Gesperrt
  • Archiviert

How can I set a custom file as home page for new tabs in Firefox Desktop 107?

Hello, in past versions of Firefox, I was able to follow the steps on this page to set a custom HTML file on my PC as my home page for new tabs: https://peterries.net/blo… (Lesen Sie mehr)

Hello, in past versions of Firefox, I was able to follow the steps on this page to set a custom HTML file on my PC as my home page for new tabs: https://peterries.net/blog/firefox-ubuntu-local-file/

I have Firefox 107.0.1 now and it's not happening. When I open the browser from scratch, I see my custom home page file. But when I open a new tab, I just see a blank screen. If I then click the Home icon on the toolbar, I do see my custom HTML page, but I don't want to have to click that button for each new tab.

Right now, in my settings, I have the URL to the page set as the custom URL for the HTML fiile, like this:

file:///home/peter/Documents/homepage/peter-home-homepage.html

That works. And I also have followed the steps on that blog post to customize my /usr/lib/firefox/autoconfig.cfg and my ../firefox/defalults/pref/autoconfig.js files. That's no longer working.

Did something in a recent version change? Is this no longer supported? Thanks for any ideas!

Gefragt von SuMo Bot vor 3 Jahren

Beantwortet von cor-el vor 3 Jahren

  • Gelöst
  • Archiviert

Cannot add Amazon search engine to search toolbar

I am using Firefox 126.0 under Windows 10. I am trying to add search engines to the search toolbar. (Just to be clear, this is the search box that appears below the addr… (Lesen Sie mehr)

I am using Firefox 126.0 under Windows 10.

I am trying to add search engines to the search toolbar. (Just to be clear, this is the search box that appears below the address bar, not the address bar itself.)

I followed the instructions here. That worked fine for Wikipedia, Google Maps and YouTube. Then I tried to add Amazon UK. The Amazon icon is now present in the search box, but when I select it, I see this message:

Firefox could not download the search plugin from: https://d2lo25i6d3q8zm.cloudfront.net/browser-plugins/AmazonSearchSuggestionsOSD.Firefox.xml

I have no idea what this means or what to do about it.

(I also tried adding it from Settings > Search > Search Shortcuts, but Amazon does not appear on that list of search engines [unlike on my other computer]. I clicked "Find more search engines", but that brought up a list of 5,192 extensions, most of which seemed not be related to searching.)

Thanks in advance for any help or suggestions.

Mike

Gefragt von Mike L vor 1 Jahr

Beantwortet von cor-el vor 1 Jahr

  • Gelöst
  • Archiviert

Mouse-click + modifier key to open a link in private mode?

I'd like to be able to open a link in private mode by holding down some modifier key, then clicking on the link. There are many times that I want to open a link in privat… (Lesen Sie mehr)

I'd like to be able to open a link in private mode by holding down some modifier key, then clicking on the link. There are many times that I want to open a link in private mode, and a keypress + click would be the quickest way to do it given that one hand typically remains at the keyboard while I use the mouse/trackpad.

I've even added a toolbar button to open a new private browsing window, then dragged and dropped a link onto the button, but that gets a circle with slash icon and nothing more.

Others have asked this question, so, to be clear, none of the following address my question: copying the link then opening the private browsing window & pasting the link, using a customized shortcut/bookmark, opening Firefox in private mode via command line, right-clicking the link then selecting "Open link in new private window".

Thanks for any advice and thank you, Mozilla, for Firefox!

Gefragt von TAP vor 1 Jahr

Beantwortet von zeroknight vor 1 Jahr

  • Gelöst
  • Archiviert

Drag tab resizing

hello :) in chrome when you drag a tab out to open it in another window it automatically goes to a smaller window, firefox always copys what size the window was whe… (Lesen Sie mehr)

hello :)

in chrome when you drag a tab out to open it in another window it automatically goes to a smaller window, firefox always copys what size the window was when you dragged it out. so when the window is maximised it will always open a new maximised window.

So my question is, when dragging a tab to open it in a new window is there a way to stop it from copying the size of the window you dragged it?

im really bad at explaining things so here are visual of what i mean - https://imgur.com/a/aSj0P2G

Gefragt von exhaleman vor 2 Jahren

Beantwortet von zeroknight vor 2 Jahren

  • Gelöst
  • Archiviert

LastPass is now disabled with every Firefox restart

For the past few months every restart of Firefox disables LastPass. I did NOT have this problem previously. The version of LastPass is current (no updates found). I can g… (Lesen Sie mehr)

For the past few months every restart of Firefox disables LastPass. I did NOT have this problem previously. The version of LastPass is current (no updates found). I can go to Add-ons and the toggle is set to "on" but the icon in the menu bar is black. If I click the toggle off, then back on, LastPass comes on just fine. Why is Firefox disabling something that Add-ons says is loaded? VERY strange. Does NOT happen in Chrome. Thanks for any assistance. PITB!!!

Gefragt von RobertL39 vor 1 Jahr

Beantwortet von zeroknight vor 1 Jahr

  • Gelöst
  • Archiviert

is it possible to show taskbar "tabs" for open windows in windows 11

In windows 10, I got used to opening a new window in FF and then a "tab" for the new window would open in the taskbar. I could then switch between windows by clicking on … (Lesen Sie mehr)

In windows 10, I got used to opening a new window in FF and then a "tab" for the new window would open in the taskbar. I could then switch between windows by clicking on these tabs on the taskbar. In windows 11, I can click on the FF icon in the taskbar and open a new window, but a tab for that new window no longer appears on the taskbar. Instead of the previous tabs on the taskbar for each new/open window, there is nothing. I have tried the suggestion, found in another thread, to use about:config to change to false the setting browser.taskbar.previews.enable, but there was no difference. Does someone know another approach, or is this a windows 11 "feature"?

Gefragt von lrh1099 vor 2 Jahren

Beantwortet von t.r.ernst vor 2 Jahren