Showing questions tagged: اعرض كل الأسئلة
  • حُلّت
  • المُؤرشفة

ALL extensions appear to be corrupt.

I'm using freshly-downloaded Firefox version 102.2 on a brand new laptop (Windows 11 Pro version 21H2), and every single extension is showing a "Installation aborted beca… (read more)

I'm using freshly-downloaded Firefox version 102.2 on a brand new laptop (Windows 11 Pro version 21H2), and every single extension is showing a "Installation aborted because the add-on appears to be corrupt" message when I try to install. I have tried checking for updates, quitting and reopening firefox, restarting my computer, refreshing firefox, uninstalling and reinstalling firefox, as well as any and all combinations of those. I've scoured these message boards and nothing is working for me. Please help!

Asked by Jupiter 1 year ago

Answered by Jupiter 1 year ago

  • حُلّت
  • المُؤرشفة

How to completely remove the tab bar

How can I completely remove the tab bar and regain 3/4 of an inch of screen space. It would be nice if Mozilla would just have a on/off button for it. I've tried creating… (read more)

How can I completely remove the tab bar and regain 3/4 of an inch of screen space. It would be nice if Mozilla would just have a on/off button for it. I've tried creating a folder called Chrome within my Firefox Profile folder. I then created a text file within that folder and named it userChrome.css. I put this string in the text file #tabbrowser-tabs { visibility: collapse !important; } This did not work, does anyone know the best method for getting rid of the annoying tab bar?

Thank you

Asked by simpleman2 9 months ago

Answered by jscher2000 - Support Volunteer 9 months ago

  • حُلّت
  • المُؤرشفة

Firefox View Not Enabled By Default On Update to 106 on Arch Linux

I have recently updated to Firefox 106 on two Arch Linux systems. One of them has Firefox View enabled and working by default, another does not. I looked around and tried… (read more)

I have recently updated to Firefox 106 on two Arch Linux systems. One of them has Firefox View enabled and working by default, another does not. I looked around and tried some options in about:config to enable it, however it did not work and I reverted the changes. I would like to enable Firefox View on this browser as well, and I would like to know how to enable it.

Asked by Harley The Foxy 1 year ago

Answered by cor-el 1 year ago

  • حُلّت
  • المُؤرشفة

missing print "page setup" in Mozilla v85

With the new v85 of Firefox... for Microsoft Print to PDF... the defaults for print headers & footers has changed and is no longer available to edit or even view. It… (read more)

With the new v85 of Firefox... for Microsoft Print to PDF...

the defaults for print headers & footers has changed and is no longer available to edit or even view. It seems as though my settings remain in place for other printing options like my physical printer but even there the options are not editable or viewable.

There used to be a "page setup" option but I have not be able to find this anywhere anymore.

I'm assuming that it has to do with the bug fix for pdf printing but doesn't seem that it should be an intended outcome of the fix.

Any work arounds anyone knows about or has found?

Asked by Cobalt TiNor 3 years ago

Answered by jscher2000 - Support Volunteer 3 years ago

  • حُلّت

Embedded videos

Embedded videos missing in Firefox but show up in Microsoft Edge. How to fix it? Example: https://scheerpost.com/2024/03/09/you-are-betraying-your-ancestors-a-message-to… (read more)

Asked by manny52 1 month ago

Answered by jonzn4SUSE 1 month ago

  • حُلّت

No option for picture in picture on twitch

I've just switched to firefox from brave, and theres no button on twitch to enable picture in picture. Using the keyboard shortcut (cmd+option+shift+]) works, but I'd muc… (read more)

I've just switched to firefox from brave, and theres no button on twitch to enable picture in picture. Using the keyboard shortcut (cmd+option+shift+]) works, but I'd much rather click something on the screen. On brave there used to be a picture in picture button alongside settings, theatre mode, and fullscreen buttons, but on firefox this has been replaced by a clip button. There's no option for it if I right click (this works on youtube), and no option in the address bar for either twitch or youtube. I've tried disabling all my extensions and lowering protections but nothing seems to work.

Asked by Jacob 1 month ago

Answered by zeroknight 1 month ago

  • حُلّت
  • المُؤرشفة

userChrome

There is no userChrome.css in my profile. If it needs to be created, where do I create it? Yes, I searched for help. What I found was about userChrome.css to solve spec… (read more)

There is no userChrome.css in my profile.

If it needs to be created, where do I create it?

Yes, I searched for help. What I found was about userChrome.css to solve specific problems, but not what to do if it doesn't exist. Is userChrome still supported?

Thank you! Mark.

Asked by Mark Filipak 1 year ago

Answered by Mark Filipak 1 year ago

  • حُلّت
  • المُؤرشفة

Firefox breaks my desktop environment's scrollbar style and (gradient) color and in version 98+ refuses css to approximate it

I work on kubuntu 20.04 with plasma 5.18.8 desktop environment. I have a QtCurve-based custom application style, which I almost match with css for GTK apps. Firefox has t… (read more)

I work on kubuntu 20.04 with plasma 5.18.8 desktop environment. I have a QtCurve-based custom application style, which I almost match with css for GTK apps. Firefox has to be an exception by itself! Not only that, but it changes my ability to customize its interface, from time to time and even changes access to such ability, on some updates.

My scrollbar customizations in userChrome.css and userContent.css do not work any more (other CSS changes still work, for menu/addressbar/tabbar/bookmarksbar orderint and tab styling). I had to resort to settings in user.js file, to get a 20px width scrollbar, suitable for my big screen, but... it gets very wide when I increase the focus, on some webpages and becomes very ugly! Furthermore, I cannot make sense of the proper use of "ui.themedScrollbar*" settings and the scrollbar and its slider result in the same color. These are my settings in user.js:

user_pref("widget.content.gtk-theme-override", "backwater"); user_pref("widget.non-native-theme.enabled", false); // Use GTK-3.0 gtk.css: set to false user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true); // Use userChrome.css & userContent.css: set to true user_pref("widget.gtk.alt-theme.scrollbar_active", true); user_pref("widget.non-native-theme.scrollbar.size.override", 20); // If nothing else works, fix scrollbar width to 20px user_pref("widget.non-native-theme.gtk.scrollbar.round-thumb", false); user_pref("widget.non-native-theme.gtk.scrollbar.thumb-size", 1.0); // originally 0.75 user_pref("widget.non-native-theme.gtk.scrollbar.allow-buttons", true); // it was true, anyway... user_pref("layout.css.cached-scrollbar-styles.enabled", false); user_pref("layout.css.color-mix.enabled", true); user_pref("widget.non-native-theme.scrollbar.style", 4); // wide scrollbar theme: set to 4 user_pref("ui.themedScrollbar", "#bad1f5"); user_pref("ui.themedScrollbarInactive", "#668cc4"); user_pref("ui.themedScrollbarThumb", "#e4e4e4"); user_pref("ui.themedScrollbarThumbHover", "#e4e4e4"); user_pref("ui.themedScrollbarThumbActive", "#668cc4"); user_pref("ui.themedScrollbarThumbInactive", "#bad1f5"); user_pref("browser.dom.window.dump.enabled", false); user_pref("extensions.ui.sitepermission.hidden", false); user_pref("fission.experiment.max-origins.qualified", true);

Either with the "ui.themedScrollbar*" settings or without them (and cleared from the prefs.js file), the scrollbar and its slider result in the same color, unless I (tryingly) click on some place on the scrollbar outside its slider; then I can see the slider, _only_ for the duration of the mouse-down event (which causes up or down page-hight scrolling).

The default, very thin scrollbar, as well as my modified wide scrollbar with invisible slider are both useless to me! I have even tried fx-autoconfig (https://github.com/MrOtherGuy/fx-autoconfig) to make the scrollbar CSS work, but no result. At this point, I am considering switching to another browser, despite the trust I have to mozilla, for my data and privacy.

Asked by kavadias 1 year ago

Answered by kavadias 1 year ago

  • حُلّت
  • المُؤرشفة

Close Tab Button On Left (Firefox 113)

This again! This was resolved about a year ago; now the problem is back, as of updating to Firefox 113.0.1 this evening. Initially post-update the close tab button was … (read more)

This again!

This was resolved about a year ago; now the problem is back, as of updating to Firefox 113.0.1 this evening.

Initially post-update the close tab button was in a weird, random place on the tab bar. I have adjusted the margins to put the button back where it's supposed to be!

I changed :

.tabbrowser-tab .tab-close-button {
  opacity: 0;
  margin-left: -4.5px !important;
  margin-right: 2px !important;
}

to:

.tabbrowser-tab .tab-close-button {
  opacity: 0;
  margin-left: -4.5px !important;
  margin-right: 35px !important;
}

to move the button back onto the left. That may seem like a drastic change but that's the lowest value I could find which produced the result I want.

However, it's not quite the result I want! As of updating to 113.0.1, the tab title itself now disappears altogether on hover.

I have tried to correct this in CSS using the .tab-text and .tab-label attributes, but without any luck so far.

Can anybody help me with this, before I'm forced to downgrade to Firefox 112?

Better yet... how about we just make this an option in Settings, as it should be?!

Asked by Kit Marsden 11 months ago

Answered by Kit Marsden 11 months ago

  • حُلّت
  • المُؤرشفة

Where did Page Setup / Margins & Header/Footer go?

I'm using Firefox 85.0.2 . . . I was doing this (below), to customize my header and footer, but in this version of FF, I no longer see this in Options - only in: about:c… (read more)

I'm using Firefox 85.0.2 . . . I was doing this (below), to customize my header and footer, but in this version of FF, I no longer see this in Options - only in: about:config . . . keyword "footer" . . . there, I would have to change it for 5 different ways of printing (to printers or to PDF)

I need to get rid of printing the URL in the footer - many times, it's too long, and I don't need it.

Where did the Page Setup option go?

I see in the current Print Options, you have to go to - More Settings / Margin / Custom - to see those. Why would they put this so many levels down?

It used to be: File / Page Setup / Margins & Header/Footer . . . "Customize" Headers & Footers:

Option 1 (left) . . . there are two leading spaces:

 > > &T
 > > &U . . . &D . . . &PT

Option 2 (left) . . . get rid of the ">"s, and just have the two leading spaces:

 &T
 &U . . . &D . . . &PT

Asked by sludge7051-x 3 years ago

Answered by jscher2000 - Support Volunteer 3 years ago

  • حُلّت
  • المُؤرشفة

PiP mode resize difference on Windows and Linux

Hello. I recently moved from windows to Linux Mint, and noticed the behavior of the Picture in Picture window is different when resizing. On windows, the aspect ratio is … (read more)

Hello. I recently moved from windows to Linux Mint, and noticed the behavior of the Picture in Picture window is different when resizing. On windows, the aspect ratio is kept. while on Linux, it is free form, making these black bars around the video, so I have to resize it very carefully to not show any black bars.

How can I make the PiP on Linux behave like on Windows? That means resizing keeping the aspect ratio.

Attached are the comparisons between Windows and Linux Mint.

Thank you very much!

Asked by buneco05 9 months ago

Answered by buneco05 7 months ago

  • حُلّت
  • المُؤرشفة

How I can safely remove the “SaveFrom.net Helper” bookmark tab which has high jacked my Firefox Bookmarks.

Unfortunately, I downloaded “SaveFrom.net Helper” without reviewing it. Since downloading it I have been receiving a alerts from “McAfee WebAdvisor” about “dangerous pag… (read more)

Unfortunately, I downloaded “SaveFrom.net Helper” without reviewing it.

Since downloading it I have been receiving a alerts from “McAfee WebAdvisor” about “dangerous pages blocked”.

I was able to remove the “SaveFrom.net Helper” add on in Firefox, but am unable to remove the “Savefrom.net Helper” bookmark tab which has high jacked my normal Firefox Bookmarks.

I can no longer easily see my Firefox Bookmarks and have to keep opening the Firefox Application Menu, then select Bookmarks, then select Manage Bookmarks in order to see my bookmarks.

Can you please advise how I can safely remove the “SaveFrom.net Helper” bookmark tab which has high jacked my Firefox Bookmarks.

Asked by Philip47 2 years ago

Answered by Philip47 2 years ago

  • حُلّت
  • المُؤرشفة

Hide Tab bar if there is only one tab

Hello! I have been using this userChrome.css code to hide the tab bar if there is only one tab (on Windows): tab:only-of-type, tab:only-of-type + #tabs-newtab-button { … (read more)

Hello!

I have been using this userChrome.css code to hide the tab bar if there is only one tab (on Windows):

tab:only-of-type, tab:only-of-type + #tabs-newtab-button {

   display: none !important;

}

#tabbrowser-tabs, #tabbrowser-arrowscrollbox, #tabbrowser-tabs > .tabbrowser-arrowscrollbox {
   min-height: 0 !important;

}

Since one of the recent Firefox updates, this code does no longer work. Maybe because there is a new element in the tab bar: A drop-down list at the right.

Any idea how to make the above code work again?

Peter

Asked by peter596 1 year ago

Answered by cor-el 1 year ago

  • حُلّت
  • المُؤرشفة

addon '' extensions''

hi, i see a new addon in my bookmarks bar- extensions , on the right above... its not possible to drag it down to customize toolbar .i can drag /up and down/other itmes… (read more)

hi, i see a new addon in my bookmarks bar- extensions , on the right above... its not possible to drag it down to customize toolbar .i can drag /up and down/other itmes buy why not this one? pls fix it...

Asked by Slawomir Dzwonek 1 year ago

Answered by jscher2000 - Support Volunteer 1 year ago

  • حُلّت
  • المُؤرشفة

AdBlock Plus extension does not work after updating Firefox

AdBlock Plus extension does not work after updating Firefox (to version 102.3.Oesr) on desktop MacPro. Deleting the preference file (pref.js) has made no difference. Thi… (read more)

AdBlock Plus extension does not work after updating Firefox (to version 102.3.Oesr) on desktop MacPro. Deleting the preference file (pref.js) has made no difference.

This problem has not occurred after updating Firefox on my laptop Mac Book Pro.

Both computer use OS High Sierra (10.13.6).

Please advise. Thank you.

Asked by no1uno 1 year ago

Answered by no1uno 1 year ago

  • حُلّت
  • المُؤرشفة

Removing the ⌘+J shortcut

I am trying to change the keyboard shortcut of the Tools → Downloads menu (opening up the downloads). I accidentally click that sometimes and it is quite annoying, so I … (read more)

I am trying to change the keyboard shortcut of the Tools → Downloads menu (opening up the downloads).

I accidentally click that sometimes and it is quite annoying, so I thought I'll switch the shortcuts to a more complex one to avoid these mistakes ^+⌘+J and when I remap that in the Keyboard preferences, the new shortcuts shows up in the menu, and it starts working but the old shortcut ⌘+J is still working.

I believe that is a bug in Firefox.

Asked by István Karaszi 1 year ago

Answered by jscher2000 - Support Volunteer 1 year ago