Showing questions tagged: Show all questions
  • Solved
  • Archived

Stop auto importing history from other browsers

I am a game developer. I work about 12 hours a day, in Chrome. It is my main browser. When I installed firefox, I was asked to "import" cookies and such. I did. Which has… (read more)

I am a game developer. I work about 12 hours a day, in Chrome. It is my main browser. When I installed firefox, I was asked to "import" cookies and such. I did. Which has been a terrible headache. All of the bookmarks and everything from Chrome came with it, which I already had in firefox, since I've had it for years. But, I thought since this is a brand new computer that I needed to do that. Fast-forward a couple of weeks and now EVERY time I open up firefox, all 10 million history links are in history.

I use firefox to unwind and watch movies. I don't want 10 million links to work in front of where I left off in binge watching Seinfeld.

I've tried everything and followed instructions and STILL, all history from Chrome shows up in firefox. It is infuriating. AND uninstalling and reinstalling did nothing. The setting is already in the account to import from Chrome to firefox. I've removed addons and extensions as well. Nothing has worked.

Asked by boundlessenterprise 1 year ago

Answered by willjoe24421 1 year ago

  • Solved
  • Archived

Youtube GPU usage peaks

I noticed some peaks of usage on both internal and dedicated GPU while watching videos on YouTube. This happens only when watching videos not on Full Screen mode. I teste… (read more)

I noticed some peaks of usage on both internal and dedicated GPU while watching videos on YouTube. This happens only when watching videos not on Full Screen mode. I tested also with chromium but there's not this issue. What is causing it? How can i stop this behavior?

Asked by Gian 1 year ago

Answered by ARMAN KHAN 1 year ago

  • Solved
  • Archived

Get multirow bookmarks toolbar working again with Firefox 109 and Windows 11

Hi @all, I reinstalled my computer from scratch with Windows 11, before this reinstallation I had Windows 10. Now I noticed that with the newest Firefox version 109 (tha… (read more)

Hi @all,

I reinstalled my computer from scratch with Windows 11, before this reinstallation I had Windows 10. Now I noticed that with the newest Firefox version 109 (that I also had before with Windows 10) and Windows 11 my multirow bookmarks toolbar doesn´t work anymore. Before the reinstallation it worked with the following code:


/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/multi-row_bookmarks.css made available under Mozilla Public License v. 2.0
See the above repository for updates as well as full license text. */

/* Makes bookmarks toolbar span multiple rows */

#PersonalToolbar{
  --multirow-bmb-n-rows: 3; /* Control how many rows are shown before scrolling */
  --multirow-bmb-row-margin: 2px; /* Control how much spacing is between rows */
  max-height: none !important;
}

#PlacesToolbar > hbox{ 
  display: block;
  width: 100vw;
}

#PlacesToolbarItems{
  display: flex;
  flex-wrap: wrap;
  /* --uc-bm-padding is defined in autohide_bookmarks_toolbar.css */
  max-height: calc(var(--multirow-bmb-n-rows) * (5px + 1em + (2 * (var(--multirow-bmb-row-margin) + var(--uc-bm-padding,2px))))) !important;
  overflow-y:auto;
  scrollbar-color: var(--lwt-accent-color) var(--toolbar-bgcolor) ;
  scrollbar-width: thin;
}

/* Hide the all-bookmarks button */
#PlacesChevron{ display: none }

/* Add some spacing between rows */
#PlacesToolbarItems > .bookmark-item{ margin: var(--multirow-bmb-row-margin) 3px !important;  }


I already tried some other codes that I found in the internet but none of them worked. I have this code in the file userChrome.css, this file is in a chrome folder and this folder is in my profile folder. Can anybody tell me what I have to do to make the multirow bookmarks toolbar working again?

Best regards heusmich

Asked by heusmich 1 year ago

Answered by heusmich 1 year ago

  • Solved
  • Archived

Disable Tab Search

Recently the V-like icon/button appeared at the right-hand end of the top line of my Firefox windows. This Tab Search could be invaluable to some, but I have no need for… (read more)

Recently the V-like icon/button appeared at the right-hand end of the top line of my Firefox windows. This Tab Search could be invaluable to some, but I have no need for it. If I start to get too many tabs I just use another window. However, I click on it constantly when I intend to minimize the window. I have been clicking on the - icon/button in EVERY WINDOWS APPLICATION since Windows began, and as it has ALWAYS been the LEFT-MOST item in the UPPER RIGHT CORNER I haven't had to think about it in decades. But now it isn't the left-most, that is now tab search.

Please, please, PLEASE provide a configuration option to remove Tab Search from the top line.

Thanks!

Roy Harvey Cheshire, CT

Asked by RHinCT 1 year ago

Answered by TyDraniu 1 year ago

  • Solved

Can't open Firefox - error re "platform version '120.0.1'

Hello, Clicking to open Firefox gives me the following error message: Error. Platform version '120.0.1' is not compatible with miniVersion >= 120.0 maxVersion <= … (read more)

Hello,

Clicking to open Firefox gives me the following error message:

Error. Platform version '120.0.1' is not compatible with miniVersion >= 120.0 maxVersion <= 120.0

Can't open firefox! I'm running Windows 11 version 10.0.22631 Build 22631

Thanks! Julie

Asked by Julie 5 months ago

Answered by Terry 5 months ago

  • Solved
  • Archived

trying to access Facebook error

An error occurred during a connection to www.facebook.com. SSL_ERROR_DC_EXPIRED What in the world? does Facebook not keep up with its own security? or is this a Firefox t… (read more)

An error occurred during a connection to www.facebook.com. SSL_ERROR_DC_EXPIRED What in the world? does Facebook not keep up with its own security? or is this a Firefox thing?

Asked by judgeraye 2 years ago

Answered by cor-el 2 years ago

  • Solved
  • Archived

google.com won't load

The google search bar on the homepage doesn't work, just does an infinite load, the same with google.com. The extensions I have are AVG Online Security, Malwarebytes, and… (read more)

The google search bar on the homepage doesn't work, just does an infinite load, the same with google.com. The extensions I have are AVG Online Security, Malwarebytes, and AVG Anti-Tracking. The version is the latest version 116.0.1

Asked by anthonyjshaffer917 9 months ago

Answered by anthonyjshaffer917 9 months ago

  • Solved
  • Archived

Tabs on Bottom broke again

Hi Well Firefox did it again. I had tabs on the bottom where I wanted them and they broke this again in the update I just got. Any idea how to move them back down to th… (read more)

Hi

Well Firefox did it again. I had tabs on the bottom where I wanted them and they broke this again in the update I just got.

Any idea how to move them back down to the bottom? This is the userchrome.css coding I was using that worked fine before the update

@import url(userChrome-color_bookmark_folders_Proton89.css);


/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/tabs_on_bottom.css made available under Mozilla Public License v. 2.0 See the above repository for updates as well as full license text. */

/* Modify to change window drag space width */ /* Use tabs_on_bottom_menubar_on_top_patch.css if you have menubar permanently enabled and want it on top

  • /

/* IMPORTANT */ /* Get window_control_placeholder_support.css Window controls will be all wrong without it. Additionally on Linux, you may need to get: linux_gtk_window_control_patch.css

  • /
root{ --uc-titlebar-padding: 0px; }

@media (-moz-os-version: windows-win10){

root[sizemode="maximized"][tabsintitlebar]{ --uc-titlebar-padding: 8px }

}

  1. toolbar-menubar[autohide="true"] > .titlebar-buttonbox-container,
  2. TabsToolbar > .titlebar-buttonbox-container{

position: fixed; display: block; top: var(--uc-titlebar-padding,0px); right:0; height: 35px; } /* Mac specific. You should set that font-smoothing pref to true if you are on any platform where window controls are on left */ @supports -moz-bool-pref("layout.css.osx-font-smoothing.enabled"){

root{ --uc-titlebar-padding: 0px !important }

.titlebar-buttonbox-container{ left:0; right: unset !important; } }

root[uidensity="compact"] #TabsToolbar > .titlebar-buttonbox-container{ height: 30px }
  1. toolbar-menubar[inactive] > .titlebar-buttonbox-container{ opacity: 0 }
  1. navigator-toolbox{ padding-top: var(--uc-titlebar-padding,0px) !important; }

.titlebar-buttonbox-container > .titlebar-buttonbox{ height: 100%; }

  1. titlebar{

-moz-box-ordinal-group: 2; -moz-appearance: none !important; --tabs-navbar-shadow-size: 0px; }

.titlebar-placeholder,

  1. TabsToolbar .titlebar-spacer{ display: none; }

/* Also hide the toolbox bottom border which isn't at bottom with this setup */

  1. navigator-toolbox::after{ display: none !important; }

@media (-moz-gtk-csd-close-button){ .titlebar-button{ -moz-box-orient: vertical } }

/* These exist only for compatibility with autohide-tabstoolbar.css */ toolbox#navigator-toolbox > toolbar#nav-bar.browser-toolbar{ animation: none; }

  1. navigator-toolbox:hover #TabsToolbar{ animation: slidein ease-out 48ms 1 }

/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/tabs_on_bottom_menubar_on_top_patch.css made available under Mozilla Public License v. 2.0 See the above repository for updates as well as full license text. */

/* Menubar on top patch - use with tabs_on_bottom.css */ /* Only really useful if menubar is ALWAYS visible */

root{ --uc-window-control-width: 0px !important }
  1. navigator-toolbox{ padding-top: calc(29px + var(--uc-titlebar-padding,0px)) !important }
  1. toolbar-menubar{

position: fixed; display: flex; top: var(--uc-titlebar-padding,0px); height: 25px; width: 100%; overflow: hidden; }

  1. toolbar-menubar > .titlebar-buttonbox-container{ height: 29px; order: 100; }
  1. toolbar-menubar > [flex]{ flex-grow: 100; }
  2. toolbar-menubar > spacer[flex]{

order: 99; flex-grow: 1; min-width: var(--uc-window-drag-space-width,20px); }

  1. toolbar-menubar .titlebar-button{ padding: 2px 17px !important; }
  1. toolbar-menubar .toolbarbutton-1 { --toolbarbutton-inner-padding: 3px }

/* TABS: height */*|*:root { --tab-toolbar-navbar-overlap: 0px !important; --tab-min-height: 20px !important; --tab-min-width: 80px !important;

  1. tabbrowser-tabs {

width: 100vw !important; }

  1. main-window:not([chromehidden*="toolbar"]) #navigator-toolbox {padding-bottom: var(--tab-min-height) !important;}

.tab-background { border-radius: 8px 8px 0px 0px !important; border-image: none !important; } .tab-line { display: none; }

.tab-close-button { color: red!important; }

Asked by scottish2 1 year ago

Answered by jscher2000 - Support Volunteer 1 year ago

  • Solved
  • Archived

Spell Check not working.

Dear Sir or Madam, I'm running 101.0.1 and spell check no longer works on any mail app like Gmail, Outlook, Yahoo, BT Mail. If I use Chrome or Edge then spell check work… (read more)

Dear Sir or Madam,

I'm running 101.0.1 and spell check no longer works on any mail app like Gmail, Outlook, Yahoo, BT Mail. If I use Chrome or Edge then spell check works correctly. This is despite my Firefox Settings being as below.....

Language Choose the languages used to display menus, messages, and notifications from Firefox. ENGLISH GB Set Alternatives… ENGLISH GB Choose your preferred language for displaying pages. Choose… ENGLISH (United Kingdom) (en-gb) Check your spelling as you type = Tick (Yes)

Could you please advise a fix?

Kind regards,

Neil.

P.S. If I use Chrome or Edge then spell check works correctly.

Asked by Trinovantes 1 year ago

Answered by Trinovantes 1 year ago

  • Solved
  • Archived

Firefox window refuses to open maximized

I've worked with Firefox for several years, and had it opening maximized. I recently manually resized the Firefox window to facilitate some work in which I needed some o… (read more)

I've worked with Firefox for several years, and had it opening maximized. I recently manually resized the Firefox window to facilitate some work in which I needed some other windows visible. However, now I can't get Firefox to open maximized. Instead, it opens a window going from the left edge of my screen (see the first image below) about a third of the width of the monitor, and it is showing the double box icon in the upper right corner indicating that the computer "thinks" it is in full screen. If I click that double box, the window immediately shifts to the right edge of the screen, occupying a space about a third of the monitor from the right edge, and shows a single box in the upper right corner of the window. If I click that single box, the window finally does expand to full screen, showing a double box in the upper right corner. I've tried all the manipulations I've seen concerning starting screen size (such as going to the shortcut icon properties and indicating the that the program should start "maximized") but I'm still getting this same behavior. Any thoughts? (I'm running Windows 11, with the latest version of Firefox.)

Asked by Jim 1 year ago

Answered by user104147805413306348376805769878442569366 1 year ago

  • Solved
  • Archived

Firefox just stops working and has black screen after using it at random times

Firefox just turns into a black screen and becomes unusable. It has been happening for a long time now and i have checked RAM and CPU usage and they are all fine, as I ex… (read more)

Firefox just turns into a black screen and becomes unusable. It has been happening for a long time now and i have checked RAM and CPU usage and they are all fine, as I explored potential causes.

I will be using firefox and it just turns all black on all screens and is completely unusable. To use it again I have to force close all windows and reopen it and it works again.

This is a frequent issue that I have seen

Asked by K_A 8 months ago

Answered by zeroknight 8 months ago

  • Solved
  • Archived

Chatgpt issue on Firefox browser, comparing Edge

I am experiencing issues with my ChatGPT subscription while using it on the Firefox browser. Despite having an active subscription with access to ChatGPT-4, the interface… (read more)

I am experiencing issues with my ChatGPT subscription while using it on the Firefox browser. Despite having an active subscription with access to ChatGPT-4, the interface only shows an 'Upgrade' option instead of the 'Refer a Friend' feature, which suggests that my subscription isn't being recognized properly. Additionally, whenever I try to send a message in the chat, I receive an error stating, 'Our systems have detected unusual activity from your system. Please try again later.' I haven't encountered these issues on other browsers. Could you please provide assistance or guidance on how to resolve these problems with Firefox?"

I have tried to clear the cache, and relogin, does not work...

I am wondering if this is an issue of Firefox or ChatGPT, any resolution on this?

Asked by Zhenggli 6 months ago

Answered by Zhenggli 6 months ago

  • Solved
  • Archived

How to open all synced tabs

I have seen multiple copies of this question, some unanswered, some with the same "answer". All the questions are closed so I cannot reply to them. The "answer" does not … (read more)

I have seen multiple copies of this question, some unanswered, some with the same "answer". All the questions are closed so I cannot reply to them. The "answer" does not work.

I have the "Show tabs from other devices" sidebar. I also can access from "Open application menu" > email address > list of synced tabs. Both methods show me the device name and all of my synced tabs. Neither method has an "open all tabs" option. If I right click my device name nothing happens. If I right click a tab, it opens that one tab. I don't know how many tabs I have on my Android. I have enough tabs that it only shows the infinity symbol instead of the number. It has shown the infinity symbol for a long time and I've opened many more tabs since. It could be hundreds or even thousands of tabs. I have 224 tabs on my laptop. I want to open all 224 laptop tabs plus all however many Android tabs on my laptop at the same time. I'm aware this will cause significant lag on my laptop. I'm not looking for a solution for that or people telling me not to do that. I want to know how to open all of my synced tabs at once on my laptop, without having to click through one by one.

Edition Windows 11 Home Version 22H2 Installed on ‎2022-‎09-‎21 OS build 22621.1702 Experience Windows Feature Experience Pack 1000.22641.1000.0 "You're up to date Last checked: Today, 17:15" (Just clicked "Check for updates")

Firefox 113.0.1 (64-bit) "Firefox is up to date"

Asked by Emily 1 year ago

Answered by jonzn4SUSE 1 year ago

  • Solved
  • Archived

Browser managed by my organization

Greetings Firefox Support/CommunityL While reconnecting one of my computers to my Firefox account I saw at the top of the Settings Page: "Your settings are being managed… (read more)

Greetings Firefox Support/CommunityL

While reconnecting one of my computers to my Firefox account I saw at the top of the Settings Page: "Your settings are being managed by your organization". Problem is that I don't belong to any organizations or enterprises having anything to do with my online life. I have been hacked in the past and am paranoid when I see something that doesn't make sense. When I click on the link (trusting that it is indeed from you), it takes me to your Enterprise Policy page showing the following:


Active Policy Name Policy Value

DNSOverHTTPS Enabled false Locked true

I always use secure DNS (DOH or DOT) on everything - network adapters, routers (except the ISP one whose default I can't figure out to circumvent) etc. but on the browser setting pages I am only given the option of having it off: the default, increased, and max protection options are greyed out and cannot be chosen. I guess that explains the policy values but who locked it? My only guess is that is use a Surfshark VPN and realize that in so doing I am using Surfshark's DNS servers but I believe I had this problem before using the VPN. Any help would be greatly appreciated. Thanx.

Pat Ford - dpfmd@msn.com

Asked by D. Patrick Ford, MD 9 months ago

Answered by cor-el 9 months ago

  • Solved
  • Locked
  • Archived

"Enter" don't execute search in Firefox

Today 05-08-2023 when useing Firefox, im no longer able to use enter key to execute a simple google search. But it works fine on Edge. I don't want to be forced to switch… (read more)

Today 05-08-2023 when useing Firefox, im no longer able to use enter key to execute a simple google search. But it works fine on Edge. I don't want to be forced to switch to Edge, how to i fix it?? it just happened randomly. More precisely it's the center of screen search-bar that don't work. I can still use the standard (top) search-bar

I have already tried to update it, close it, nothing works. And i would really like to not lose all my settings by uninstalling it.

Asked by jesperbobbel 9 months ago

Answered by valentinesire 9 months ago

  • Solved
  • Archived

How to disable Enhanced Tracking Protection on all sites and for every FF session. Choosing Custom, and deselecting all check boxes doesn't work.

I have tried the suggestions as described in the following article: https://support.mozilla.org/bm/questions/1273784 However, am still having the issue. It's as if the s… (read more)

I have tried the suggestions as described in the following article: https://support.mozilla.org/bm/questions/1273784 However, am still having the issue. It's as if the settings are totally ignored. I am using version 108.0a1 of Firefox developer edition. Ideally what am trying to achieve is away to disable all features of ETP. I figured setting it to custom with all values unchecked would have done the trick but it's not working. What works is if I add the site to the list of Exceptions for Enhanced Tracking Protection, then I will see all Ads loaded just fine on the page. However, this is not viable for me as I have a large list of sites that I visit, and I need to see the ads on them.

Does anyone know of a way to get around this feature in FF?

Is there another setting am missing from the previous article?

Asked by Bjorn Williams 1 year ago

Answered by James 1 year ago

  • Solved
  • Archived

Firefox suggesting usernames - saved logins off

Firefox is suggesting usernames on multiple websites that I access regularly. However, I have the saved logins feature turned off in Firefox. When I access Settings >… (read more)

Firefox is suggesting usernames on multiple websites that I access regularly. However, I have the saved logins feature turned off in Firefox.

When I access Settings > Privacy & Security > Logins and Passwords - it shows all of these options turned off.

When I access Settings > Privacy & Security > Logins and Passwords > Saved Logins... - it indicates No Logins Found / No Synced Logins found.

I do have Firefox Sync turned on to sync between devices, but since it indicates "No Synced Logins" it doesn't appear this is coming from another device. I have checked multiple devices and found they all show "No Synced Logins"

Only happening in Firefox. I am not getting these suggested logins in Edge or Chrome.

Happening across all my Windows 10 and 11 devices that have Firefox sync enabled. 2 x Windows 11 Pro 22H2 (build 22621.819) 1 x Windows 10 Pro 22H2 (build 19045.2364)

Firefox 108.0 on all Windows devices, but it started before updating to 108.

I have not yet tried resetting Firefox - hoping to use that as a last resort.

Any suggestions on where else to look or what I should try?

Asked by bumgarb 1 year ago

Answered by bumgarb 1 year ago