FF: 124.0.2: Grouping of Tabs

Hail all: OS: W11Ent_x64 V: 22h2 (b: 22621.3447) FF: 124.0.2 x_64 I tried several "Group Tabs" add-ons, like: Simple Tab Groups. Tab Group. And I few I can't even recall… (மேலும் படிக்க)

Hail all:

OS: W11Ent_x64 V: 22h2 (b: 22621.3447) FF: 124.0.2 x_64 I tried several "Group Tabs" add-ons, like: Simple Tab Groups. Tab Group. And I few I can't even recall the name from. Yet, none works. Not ONE.

Now, I use Edge as well, on my corporate system that I got from work. Personal PC I use FF on.

But, the Edge Tab Grouping, which allows tabs to be "put to Eco-Sleep", while hidden the open tabs by clicking the Group-Tab Icon, is a feature I sorely miss in Firefox.

Odd, as, so many requested this feature, how come it has not been implemented over the many years of people asking?

Either way: Does anyone know a good, WORKING add-on that does the "Edge Thing" with FF tabs, please? Since, I often got like 200 tabs open, which is a real misery without Tab Grouping and "Hiding".

Thank you aforehand: Ke'Ylan.

Asked by Ke'Ylan Abaddon Banthraxx 5 மாதங்களுக்கு முன்பு

Last reply by cor-el 4 மாதங்களுக்கு முன்பு

where to find the cast-cast media to device icon in firefox browser

in the firefox browser is there any way to see the casting the browser screen to chromecast on tv. similar to 'cast to media device' in edge browser or chrome browser. … (மேலும் படிக்க)

in the firefox browser is there any way to see the casting the browser screen to chromecast on tv. similar to 'cast to media device' in edge browser or chrome browser.

Asked by k.Indrakanth K 4 மாதங்களுக்கு முன்பு

Last reply by zeroknight 4 மாதங்களுக்கு முன்பு

Tab/Program Brightness

Hello support, is there any way (other than the one plugin I found that did not work for some reason) to adjust firefox' general brightness (or that of an individual ta… (மேலும் படிக்க)

Hello support,

is there any way (other than the one plugin I found that did not work for some reason) to adjust firefox' general brightness (or that of an individual tab) ?

Also changing my monitors brightness would not work for me as I am trying to test a website I develop (using firefox to visualize it) and it is rather just the large difference between my editor (which's brightness you can not adjust) and the browser that is very unpleasent when I switch back and forth (like when trying to fix a bug).

Kindest regards.

Jonas Behr

Asked by jonas.behr 4 மாதங்களுக்கு முன்பு

Last reply by cor-el 4 மாதங்களுக்கு முன்பு

Spell checker is not working in firefox

I am using the following Firefox noghtly Version 126.0a1 (2024-04-08) (64-bit). Spell checker is not all wokring. How to fix this?

Asked by diku8396 5 மாதங்களுக்கு முன்பு

Last reply by Christopher Whitmey 4 நாட்கள் முன்பு

How do I keep unwanted "bookmarks" from being added to my selected bookmarks?

I use the Mozilla Thunderbird email program and have just been overwhelmed by the number of "bookmarks" appearing under the "Bookmarks Toolbar." I don't want these addit… (மேலும் படிக்க)

I use the Mozilla Thunderbird email program and have just been overwhelmed by the number of "bookmarks" appearing under the "Bookmarks Toolbar." I don't want these additional bookmarks that I did NOT select. Moving them one by one is tedious--and I think new bookmarks are added to the toolbar if I delete any. How do I stop this? Is there a way to eliminate the added bookmarks in mass rather than singly? Thanks,

Asked by Martha Failing 2 மாதங்களுக்கு முன்பு

Last reply by cor-el 2 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

how to copy userchrome.css to installer

Copying userchrome.css to all profiles during installation of Firefox.

I want to copy "chrome/userchrome.css" automatically when a profile gets created.

Asked by yash292k11 3 ஆண்டுகளுக்கு முன்பு

Answered by cor-el 3 ஆண்டுகளுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

What content is required in userChrome.css to move the tabs bar under all other bars?

Every solution which I have found for Firefox 89 "Proton" so far which moves the Tabs Bar below the Navigation Bar (AKA "address bar"), with the Menu Bar above it, does N… (மேலும் படிக்க)

Every solution which I have found for Firefox 89 "Proton" so far which moves the Tabs Bar below the Navigation Bar (AKA "address bar"), with the Menu Bar above it, does NOT move the Tabs Bar below the Bookmarks Bar. The Bookmarks Bar appears to be overwritten and blank, and occupies space below the Menu Bar, Navigation Bar, and Tabs Bar. This empty space separates the three bars which are implemented and the content of the currently-selected tab below it.

Currently, my userChrome.css file is a copy posted by Cor-el (?):


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

/* TABS: below nav-bar - fixed for 108+,113+ */

/* ROOT -variables */
*|*:root {
  --tab-toolbar-navbar-overlap: 0px !important;
  
  --tab-min-height: 25px !important; /*override density*/
  --tab-min-width:  80px !important; /*override default*/
}

/* TABS: below nav-bar - no longer needed in 113+ *//*
#navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {
  -moz-box-ordinal-group: 10 !important;
  order: 10 !important;
}
#TabsToolbar {
  -moz-box-ordinal-group: 1000 !important;
  order: 1000 !important;
}
*/

/* TABS: position */
#TabsToolbar {
  display: block !important;
  position: absolute !important;
  bottom: 0 !important;
  width: 100vw !important;
}

/* for 107 and lower - disable this rule in 108 and newer *//*
#tabbrowser-tabs {
  width: 100vw !important;
} */

/* navigator-toolbox: PADDING */
*|*:root:not([chromehidden*="toolbar"]) #navigator-toolbox {
  padding-bottom: calc(var(--tab-min-height) + 1px) !important; /*ADJUST*/
  position: relative !important;
}

/* TABS: HEIGHT */
#tabbrowser-tabs,
#tabbrowser-arrowscrollbox,
#tabbrowser-tabs .tabbrowser-tab {
  min-height: var(--tab-min-height) !important;
  max-height: var(--tab-min-height) !important;
}

#tabbrowser-tabs,
.tab-stack,
.tab-content {
  height: var(--tab-min-height) !important;
}

/* TABS: APPEARANCE */
#TabsToolbar {
  height: var(--tab-min-height) !important;
  margin-bottom: 1px !important;
  box-shadow: ThreeDShadow 0 -1px inset, -moz-dialog 0 1px !important; /*OPTIONAL*/
  background-color: var(--toolbar-bgcolor) !important;
  color: var(--toolbar-color) !important;
}

/* indicators - hide  */
.private-browsing-indicator {display: none !important;}
.accessibility-indicator    {display: none !important;}

/* window controls in full screen - hide*/
#TabsToolbar #window-controls {display: none !important;}

/* caption buttons on tab bar - hide */
*|*:root[tabsintitlebar]:not([inFullscreen="true"])
 #toolbar-menubar[autohide="true"] ~ #TabsToolbar
 .titlebar-buttonbox-container {display: none !important;}
________________________________________________________________________________________________

Evidently, the text editor for this website does several things to the above original text that, frankly, seem unnecessary and undesirable. The .CSS file is just an unformatted text file, so what is the problem with simply copying its contents and pasting it in to the body of this post?

Which is also to say that I do NOT have a clue as to what any line in the file is meant to do, what effect it has, why it is even in the file at all, or why it is written in the way that it is. So DO NOT tell me that I "CAN" create a Cascading Style Sheet on my own when I cannot even modify one that has been provided.

On the face of it, something is missing from the above CSS text. What change needs to be made to the above content so that the Bookmark Bar will appear between the Navigation Bar and the Tabs Bar??

Thank-you very much for your time and attention to this request for assistance.

Asked by Blacklisted 3 ஆண்டுகளுக்கு முன்பு

Answered by DB-1 3 ஆண்டுகளுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

watch video "in" firefox browser

I'm trying to watch videos in Firefox. Youtube works but Xvideos does not. Firefox pops up a window asking me: >> "Opening xvideos"."com ###.mp4". >> wh… (மேலும் படிக்க)

I'm trying to watch videos in Firefox. Youtube works but Xvideos does not. Firefox pops up a window asking me:

>> "Opening xvideos"."com ###.mp4". >> which is: MP4 Video (16.4MB) >> from https://cdn77-vid.xvideos-cdn"."com >> >> What should Firefox do with this file?

My only choice is: Open with Windows Media Player x86 (default)

suggestions?

I'm running Windows 7 Firefox 76.0.1

Thanks!!!!

Asked by G_Eak 4 ஆண்டுகளுக்கு முன்பு

Answered by cor-el 4 ஆண்டுகளுக்கு முன்பு

  • Archived

Print using system dialog can't be set as default in Firefox 97.0

I just updated from Firefox 96.0.3 to Firefox 97. When I try to print I get the Firefox preview, even though I have print.tab_modal.enabled set to false. Please fix it so… (மேலும் படிக்க)

I just updated from Firefox 96.0.3 to Firefox 97. When I try to print I get the Firefox preview, even though I have print.tab_modal.enabled set to false. Please fix it so that I can get the print system dialog without going via the Firefox preview. Note that I have now reverted to Firefox 96.0.3 and won't update from this unless the problem is fixed.

Asked by paul921 2 ஆண்டுகளுக்கு முன்பு

Last reply by jscher2000 - Support Volunteer 2 ஆண்டுகளுக்கு முன்பு

  • Archived

Firefox 91.4.1 Library Button is missing by default

Hi there, I'm am trying to customize Firefox 91.4.1 ESR for my users who were using 78.10.1 before, however cannot find how to add Library-Button (which was default in p… (மேலும் படிக்க)

Hi there,

I'm am trying to customize Firefox 91.4.1 ESR for my users who were using 78.10.1 before, however cannot find how to add Library-Button (which was default in previous versions) to their UI. Since I am avoiding to amend pref.js and user.js, and this option is not controlled in latest admx template, maybe there is a way to use firefox.cfg? If yes, then how to add it there? Will it not lock users UI and he wont be able to change it afterwards? How about extensions interfering with UI? Also, will the removal of the icon continue in the next ESR versions?

Many thanks for your help in advance!

Asked by Malfunction68 2 ஆண்டுகளுக்கு முன்பு

Last reply by cor-el 2 ஆண்டுகளுக்கு முன்பு

  • Archived

Firefox 97 want to always print with system dialog box

Prior to FF97 a simply setting to "false" the about:config, print.tab_modal.enabled setting allowed FF to always use the system dialog box when printing. However, in FF97… (மேலும் படிக்க)

Prior to FF97 a simply setting to "false" the about:config, print.tab_modal.enabled setting allowed FF to always use the system dialog box when printing. However, in FF97, this is no longer the case. How can I set FF97 to always use the system print dialog box??

I almost always use Preview printing on my Macs to avoid multiple pages of garbage so this is fairly important to me...and it might help to save a few trees...

Asked by jschneid002 2 ஆண்டுகளுக்கு முன்பு

Last reply by paul436 2 ஆண்டுகளுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Firefox icon change no longer works

I use to be able to change firefox icons by adding these files in Firefox under the browser directory chrome/icons/default/BrowserPreferences.ico chrome/icons/default/Cu… (மேலும் படிக்க)

I use to be able to change firefox icons by adding these files in Firefox under the browser directory

chrome/icons/default/BrowserPreferences.ico chrome/icons/default/CustomizeToolbarWindow.ico chrome/icons/default/default.ico chrome/icons/default/downloadManager.ico chrome/icons/default/main-window.ico chrome/icons/default/openLocation.ico chrome/icons/default/places.ico chrome/icons/default/printPageSetupDialog.ico chrome/icons/default/TabMIxPreferences.ico chrome/icons/default/unknownContentType.ico chrome/icons/default/viewSource.ico chrome/icons/default/Wizard.ico

It worked in version 56 but now in version 97 and this no longer works?

Asked by ikhalil 2 ஆண்டுகளுக்கு முன்பு

Answered by TyDraniu 2 ஆண்டுகளுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Remove Shortcuts when hiding menu items

I'm hiding menu items using userChrome.css with option “toolkit.legacyUserProfileCustomizations.stylesheets” set to “true”. So I am hiding some menu items like for examp… (மேலும் படிக்க)

I'm hiding menu items using userChrome.css with option “toolkit.legacyUserProfileCustomizations.stylesheets” set to “true”.

So I am hiding some menu items like for example

  1. menu_find { display: none !important }

however though the menu item is gone how do I get rid of the ctrl-F menu shortcut...

I have many such menu items to remove so I need a generic solution to override the short-cut icons associated with the menu items I want to remove

Asked by ikhalil 2 ஆண்டுகளுக்கு முன்பு

Answered by ikhalil 2 ஆண்டுகளுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

How to allow web page to override a keyboard shortcut

How to allow web page to override a keyboard shortcut. Currently firefox picks up the shortcut instead of the webpage... For example I have an webpage that detects ctrl-… (மேலும் படிக்க)

How to allow web page to override a keyboard shortcut. Currently firefox picks up the shortcut instead of the webpage...

For example I have an webpage that detects ctrl-shift-h which worked fine in version 56 but now in version 96 it brings up a "Show All History" dialog

I an doing many such things so I looking for a generic way to override firefox keyboard shortcuts

Asked by ikhalil 2 ஆண்டுகளுக்கு முன்பு

Answered by ikhalil 2 ஆண்டுகளுக்கு முன்பு

  • Archived

How to disable Command+D to "Bookmark This Page" in Mac?

I'm running Mojave 10.14.6 on a MacMini (late 2018) with 64 GB 2667 MHz DDR4 and Firefox v86.0 64-bit. I need to disable Command+D that's currently used to "Bookmark … (மேலும் படிக்க)

I'm running Mojave 10.14.6 on a MacMini (late 2018) with 64 GB 2667 MHz DDR4 and Firefox v86.0 64-bit.

I need to disable Command+D that's currently used to "Bookmark This Page".

I need Command+D for another use.

I've searched about:config for "bookmark" and get a lot of hits, but I can't tell which one controls the setting for Command+D.

Or . . . am I barking up the wrong tree?

I want to disable Command+D.

Leaving the ability to mouse up and click Bookmarks > "Bookmark This Page" is ok.

I just need to disable the keyboard shortcut Command+D for "Bookmark This Page".

Anyone got a "howto" for this?

Thanks!

Asked by JohnDohe 3 ஆண்டுகளுக்கு முன்பு

Last reply by cor-el 3 ஆண்டுகளுக்கு முன்பு

  • Archived

Google Visited Links Color

I'm looking for a reliable way to mark Google visited links This seems to work everywhere but google a:visited { color: FF0000; } "Custom Google Visited Link Col… (மேலும் படிக்க)

I'm looking for a reliable way to mark Google visited links

This seems to work everywhere but google

a:visited {

   color: FF0000;

}

"Custom Google Visited Link Color" seems to work sometimes, but the page needs to be refreshed. No support site. https://addons.mozilla.org/en-US/firefox/addon/google-link-color/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search

Asked by noel_envode 2 ஆண்டுகளுக்கு முன்பு

Last reply by jscher2000 - Support Volunteer 2 ஆண்டுகளுக்கு முன்பு

  • Archived

Taskbar problem

In hidden Taskbar mode (W11), Firefox (98.01) is the only program that will not allow the taskbar to appear when hovering the pointer over the bottom area. All my other … (மேலும் படிக்க)

In hidden Taskbar mode (W11), Firefox (98.01) is the only program that will not allow the taskbar to appear when hovering the pointer over the bottom area. All my other programs -and browsers- let the the Taskbar appear normally. What can this be? Thanks very much, Mark

Asked by markvanderwilligen 2 ஆண்டுகளுக்கு முன்பு

Last reply by Carol Remington 1 வருடத்திற்கு முன்பு

  • Archived

How to Stop FireFox mailto Pop-Ups?

Ive researched this and went into the settings, I added the mailto link app already. But It keeps popping up.

See screen shot below

Asked by zach6 2 ஆண்டுகளுக்கு முன்பு

Last reply by FredMcD 2 ஆண்டுகளுக்கு முன்பு

  • Archived

Changing download "save to" options

Before the new update whenever I downloaded a file it would ask where to save the file to every time, now it just asks once then automatically saves any new files I downl… (மேலும் படிக்க)

Before the new update whenever I downloaded a file it would ask where to save the file to every time, now it just asks once then automatically saves any new files I download to the same folder as the previous ones, forcing me to then go to that folder and manually move it to the correct folders. Is there any way to change it back to the right way it was done before they decided to remove our choice? My setting is set to "Always ask you where to save files", with the emphasis on "Always".

Asked by Hinder777 2 ஆண்டுகளுக்கு முன்பு

Last reply by AliceWyman 2 ஆண்டுகளுக்கு முன்பு

  • Archived

New Protocol for Saving Files

I imagine this belongs in the customize controls area as it's part of settings that we are supposed to have control over and after messing around and changing everything … (மேலும் படிக்க)

I imagine this belongs in the customize controls area as it's part of settings that we are supposed to have control over and after messing around and changing everything to ask first I am still unhappy. At least I found the reason for my displeasure after reading about the new release of FF98.

Why did you change the protocol for saving files? Not having that dialog box pop up is very inconvenient. I haven't tried to play any files since FF 98 downloaded to my pc but I bet it's equally as annoying. Please go back to the old way in your next release. Some of us are in the camp of Who Moved My Cheese and we don't like this new change. It's bad enough that I have to deal with black background on menus etc due to the background I chose but this is nuts. Thank you.

Asked by tek360 2 ஆண்டுகளுக்கு முன்பு

Last reply by tek360 2 ஆண்டுகளுக்கு முன்பு