Showing questions tagged: Show all questions
  • Locked
  • Archived

Stopping firefox nag popup for an updte

Firefox v90 on a Mac. Continual nag screen popping up telling of an update. None of the solutions presented by top contributors or moderators work. Nothing obvious or sug… (read more)

Firefox v90 on a Mac. Continual nag screen popping up telling of an update. None of the solutions presented by top contributors or moderators work. Nothing obvious or suggested in about:config. Nothing about putting policies in .json files in the correct directory.

It is as if Mozilla refuses to let you turn off that nag screen.

Asked by jkeating2 1 year ago

Last reply by jscher2000 - Support Volunteer 1 year ago

  • Archived

Proton and userchrome

It took years to perfect my userchrome to make FF look exactly how I want. Once 91+ came out it wasn't even a question of fixing the floating tabs and condensing the heig… (read more)

It took years to perfect my userchrome to make FF look exactly how I want. Once 91+ came out it wasn't even a question of fixing the floating tabs and condensing the height and menu spacing (though I tried all of it) but my own codes stopped working properly - I had code to set the background colour of menus/bookmark menus and when I upgrade they were the right colour but with thick white borders around them. This was more important to me than the floating tabs and I immediately downgraded to 90 where I've stayed. Can anyone help me figure out how to get MY codes to work with 91+ and/or to work together with the other fixes out there (tabs, condensed menus etc)??

Below is how my userchrome looks and attached is how my current set up looks. ANY advice is appreciated. THANK YOU.

@import url(userChrome_Fx56_bookmark_icons.css);
*/

/* Standard folder -- on Toolbar and Menus */
#PlacesToolbarItems toolbarbutton[container="true"] > .toolbarbutton-icon,
#PlacesToolbarItems menu[container="true"] .menu-iconic-left,
:-moz-any(
#PlacesToolbarItems,
#PlacesChevronPopup,
#BMB_bookmarksPopup,
#bookmarksMenu) menu[container="true"]:not([tagContainer="true"]) > .menu-iconic-left,
/* Standard folder -- in Sidebar, Library, Add/Edit Bookmark dialog */
:-moz-any(
#bookmarks-view, 
#editBMPanel_folderTree, 
#placesList) treechildren::-moz-tree-image(container), 
#editBMPanel_folderMenuList > .menulist-label-box > .menulist-icon,
#editBMPanel_folderMenuList menupopup menuitem {
  list-style-image: url(Fx56-yellow-folder.png) !important;
}

/* THIS WAS REMOVED BECAUSE IT CAUSES YELLOW FOLDER ICONS FOR BLANK 
   COLUMNS. AS A RESULT, FOLDERS ON THE RIGHT SIDE REMAIN GRAY.
  #placeContent treechildren::-moz-tree-image(container) {
    list-style-image: url(Fx56-yellow-folder.png) !important;
  }
*/

/* Live Bookmark -- on Toolbar and Menus */ /* REMOVED */

/* Smart bookmark folder -- on Toolbar and Menus */
#PlacesToolbarItems toolbarbutton[container="true"][query="true"] > .toolbarbutton-icon,
#PlacesToolbarItems menu[container="true"][query="true"] .menu-iconic-left,
:-moz-any(
#PlacesToolbarItems,
#PlacesChevronPopup,
#BMB_bookmarksPopup,
#bookmarksMenu) menu[container="true"][query="true"]:not([tagContainer="true"]) > .menu-iconic-left > .menu-iconic-icon,
/* Smart bookmark folder -- in Sidebar, Library, Add/Edit Bookmark dialog */
:-moz-any(
#bookmarks-view, 
#editBMPanel_folderTree, 
#placesList, 
#placeContent) treechildren::-moz-tree-image(container, query) {
  list-style-image: url(Fx56-query.png) !important;
}

/* Tag containers (preserve the built-in icon) */
#PlacesToolbarItems toolbarbutton[container="true"][tagContainer="true"] > .toolbarbutton-icon,
#PlacesToolbarItems menu[container="true"][tagContainer="true"] .menu-iconic-left,
:-moz-any(
#PlacesToolbarItems,
#PlacesChevronPopup,
#BMB_bookmarksPopup,
#bookmarksMenu) menu[container="true"][tagContainer="true"] > .menu-iconic-left > .menu-iconic-icon,
/* Smart bookmark folder -- in Sidebar, Library, Add/Edit Bookmark dialog */
:-moz-any(
#bookmarks-view, 
#editBMPanel_folderTree, 
#placesList, 
#placeContent) treechildren::-moz-tree-image(container, query, tagContainer) {
  list-style-image: url(chrome://browser/skin/places/tag.svg) !important;
}

/*** Top-level "container" icons (otherwise would be Standard folder color) ***/
/* Bookmarks Menu -- in Sidebar, Library, Add/Edit Bookmark dialog */
:-moz-any(
#bookmarks-view, 
#editBMPanel_folderTree, 
#placesList, 
#placeContent) treechildren::-moz-tree-image(container, OrganizerQuery_BookmarksMenu),
:-moz-any(
#bookmarks-view, 
#editBMPanel_folderTree, 
#placesList, 
#placeContent) treechildren::-moz-tree-image(container, queryFolder_menu________),
#editBMPanel_bmRootItem > .menu-iconic-left, 
#editBMPanel_folderMenuList[selectedIndex="1"] > .menulist-label-box > .menulist-icon {
  list-style-image: url(Fx56-bookmarksMenu.png) !important;
}

/* Bookmarks Toolbar -- on Menus */
#BMB_bookmarksPopup #BMB_bookmarksToolbar > .menu-iconic-left > .menu-iconic-icon,
#bookmarksMenuPopup #bookmarksToolbarFolderMenu  > .menu-iconic-left > .menu-iconic-icon,
/* Bookmarks Toolbar -- in Sidebar, Library, Add/Edit Bookmark dialog */
:-moz-any(
#bookmarks-view, 
#editBMPanel_folderTree, 
#placesList, 
#placeContent) treechildren::-moz-tree-image(container, OrganizerQuery_BookmarksToolbar),
:-moz-any(
#bookmarks-view, 
#editBMPanel_folderTree, 
#placesList, 
#placeContent) treechildren::-moz-tree-image(container, queryFolder_toolbar_____),
#editBMPanel_toolbarFolderItem > .menu-iconic-left, 
#editBMPanel_folderMenuList[selectedIndex="0"] > .menulist-label-box > .menulist-icon {
  list-style-image: url(Fx56-bookmarksToolbar.png) !important;
}

/* Other Bookmarks -- on Menus */
#BMB_bookmarksPopup #BMB_unsortedBookmarks > .menu-iconic-left > .menu-iconic-icon,
#bookmarksMenuPopup #menu_unsortedBookmarks  > .menu-iconic-left > .menu-iconic-icon,
/* Other Bookmarks -- in Sidebar, Library, Add/Edit Bookmark dialog */
:-moz-any(
#bookmarks-view, 
#editBMPanel_folderTree, 
#placesList, 
#placeContent) treechildren::-moz-tree-image(container, OrganizerQuery_UnfiledBookmarks),
:-moz-any(
#bookmarks-view, 
#editBMPanel_folderTree, 
#placesList, 
#placeContent) treechildren::-moz-tree-image(container, queryFolder_unfiled_____),
#editBMPanel_unfiledRootItem > .menu-iconic-left, 
#editBMPanel_folderMenuList[selectedIndex="2"] > .menulist-label-box > .menulist-icon {
  list-style-image: url(Fx56-unsortedBookmarks.png) !important;
}  

/* Preserve Built-in History/Tags/All Bookmarks Icons in Library */
:-moz-any(
#placesList, 
#placeContent) treechildren::-moz-tree-image(query, OrganizerQuery_history____v), 
:-moz-any(
#placesList, 
#placeContent) treechildren::-moz-tree-image(title, query, dayContainer) {
  list-style-image: url("chrome://browser/skin/places/history.svg") !important;
}
:-moz-any(
#placesList, 
#placeContent) treechildren::-moz-tree-image(title, query, tagContainer),
:-moz-any(
#placesList, 
#placeContent) treechildren::-moz-tree-image(query, OrganizerQuery_tags_______v) {
  list-style-image: url("chrome://browser/skin/places/tag.svg") !important;
}
:-moz-any(
#placesList, 
#placeContent) treechildren::-moz-tree-image(query, OrganizerQuery_allbms_____v) {
  list-style-image: url(Fx56-allBookmarks.png) !important;
}


}

menupopup {
-moz-appearance: none !important;
background-color: #e7d9ad !important }


#urlbar[breakout],
#urlbar[breakout][breakout-extend] {
  --urlbar-height: 28px !important;
  --urlbar-toolbar-height: 30px !important;

  width: 100% !important;
  top: calc((var(--urlbar-toolbar-height) - var(--urlbar-height)) / 2) !important;
  left: 0 !important;
}

#urlbar[breakout][breakout-extend] > #urlbar-input-container,
#urlbar-input-container {
  height: var(--urlbar-height) !important;
  width: 100% !important;
  padding-block: unset !important;
  padding-inline: unset !important;
  transition: none !important;
}

#urlbar[breakout][breakout-extend] > #urlbar-background {
  box-shadow: 0 1px 4px rgba(0,0,0,.05) !important;
  animation: none !important;
}


}
/* REMOVE MEGABAR END */

Asked by M 2 years ago

Last reply by M 1 year ago

  • Archived

Browser under Remote Control

I keep getting this: URL is highlighted red/grey stripes. The robot head icon is now in the URL box and it says "Browser is under remote control (reason Dev Tools). Wha… (read more)

I keep getting this: URL is highlighted red/grey stripes. The robot head icon is now in the URL box and it says "Browser is under remote control (reason Dev Tools).

What is it? how do I get rid of it?

Asked by klg61 2 years ago

Last reply by cor-el 1 year ago

  • Archived

Nearly all addons stop working after restart. How to fix?

1. I'm using Firefox portable latest version. Nearly all addons stop working every time I restart Firefox. I have to manually disable and re-enable each addon to make th… (read more)

1. I'm using Firefox portable latest version.

Nearly all addons stop working every time I restart Firefox. I have to manually disable and re-enable each addon to make them working again.

It takes considerably long time the first time I load the first website after I restart Firefox. Also it may suddenly hang after using for a long time.

What's up? How could I fix them?


2. I would like to transfer all settings, cookies/local storage, addons (settings and files etc.) to a fresh copy of Firefox portable, to see if those issues would be fixed. What should I do? Which files do I need to backup?

Thank you.

Asked by Master 1 year ago

Last reply by cor-el 1 year ago

  • Archived

website login and functionality problems with firefox

Having lots of problems logging in and with functionality on websites I use a lot, when I use firefox that I do not have if I switch to chrome... like airline websites I … (read more)

Having lots of problems logging in and with functionality on websites I use a lot, when I use firefox that I do not have if I switch to chrome... like airline websites I go to where my login via firefox won't work, banking sites, shopping sites, sites where I have profiles.... I either can't login or sites don't function properly..... but if I switch to chrome things work fine?! like when I enter my login info on aa.com via firefox I get this page which is an error. I enter the same login info on chrome and it takes me to my aa.com account profile and access

Asked by renee626 2 years ago

Last reply by profbrane 1 year ago

  • Locked
  • Archived

How to select camera?

On Firefox 90 on Ubuntu 20.04, when a site asks for camera and microphone permissions, it’s not possible to select any device anymore. It just shows the default camera an… (read more)

On Firefox 90 on Ubuntu 20.04, when a site asks for camera and microphone permissions, it’s not possible to select any device anymore. It just shows the default camera and the default microphone.

Earlier Firefox releases used to show a selection list for the camera and also another one for the microphone.

My default camera is the one built into the laptop and I would like to use an external one that has adequate picture quality.

Can you please help selecting a camera with the new Firefox?

Asked by gdukai.laptop 2 years ago

Last reply by UniQMG 1 year ago

  • Locked
  • Archived

Suddenly cannot open local .py files (Python source files) as plain text

Hello. Up until recently, I could click a link to a locally stored Python source file (.py extension) and it would display as a plain text file in Firefox. This is what… (read more)

Hello.

Up until recently, I could click a link to a locally stored Python source file (.py extension) and it would display as a plain text file in Firefox. This is what I want; e.g., it is a way that I view my notes, refer to examples, and so on.

Starting a few days ago, when I click such a link, I now get a pop-up window with the two options "Open with" or "Save file." I have tried a number of things to get back to the old behavior, including deleting the handlers.json file in my Profile folder, running a full Refresh, and creating a new profile. None of these got me back to the old behavior: displaying the .py file as plain text.

If I set the "Open with" option in that pop-up window to Firefox, I just keep getting the pop-up over and over again, while a new tab is created each time.

Note: if I look at a .py file on GitHub, there is no problem: again, the file just displays.

I suspected this behavior is connected with my having installed the latest version of Python (3.9.6) a few days ago, and I just confirmed this by updating Python on another machine. That is, on the other machine, the .py file would display as plain text until just now, after I update Python there.

So, I believe the Python installation is the cause of the problem, but, nonetheless, it seems to me that I should be able to set (or unset?) something within Firefox to make .py files open as plain text, as they used to.

Any ideas?

Thanks in advance.

Asked by bjkeefe 2 years ago

Last reply by bjkeefe 1 year ago

  • Solved
  • Archived

Firefox hijacking Goolge search

I'm trying to completely turn off the address search bar function in Firefox. It' so annoying! I go to google. Start to type in the search bar on the page but all my typi… (read more)

I'm trying to completely turn off the address search bar function in Firefox. It' so annoying! I go to google. Start to type in the search bar on the page but all my typing ends up in the address bar. So frustrating! If I wanted to search from the address bar I wouldn't have gone to Google to do it. I DON'T want to search from the address bar EVER! So please don't say 'why don't you just..x,y or z'. I've managed to turn off all the address bar suggestions and whatnot with about a dozen different setting which is ridiculous. Turning off the rich results should fix everything but it doesn't. No mater what I try I cannot get text to appear in the Google search bar. So basically Firefox has stolen the functionality of the Google webpage for me. I've been using Firefox for a long time but lately I'm been questioning why a lot. Anyway, any suggestions to stop Firefox from hijacking my search would be appreciated.

Asked by bpereira 2 years ago

Answered by Terry 2 years ago

  • Solved
  • Archived

search box on Firefox home page

Trying to use the seach box in the centre of the Firefox homepage (google search engine) .. everything I type goes up to the address bar . Tried changing settings - I se… (read more)

Trying to use the seach box in the centre of the Firefox homepage (google search engine) .. everything I type goes up to the address bar . Tried changing settings - I see there's a search box option in the 'tool bar' which looks to be up at the side of the address bar. cant understand why we need another one as well as the one in the centre.

Also by turning off suggestions and not choosing the 'search box option in the 'tool bar' , the address bar is now only accepting URLs so searching isnt working.

So ..1. Is the search box in the centre no use?

        2.  Does search work with all suggestions turned off?

Asked by brian.pitchford 2 years ago

Answered by TyDraniu 2 years ago

  • Solved
  • Archived

cannot log into youtube, gmail, or google

Ever since updating to the most recent version of Firefox, I cannot log into anything related to Google. I can enter my username and password but the "next" or "log in" b… (read more)

Ever since updating to the most recent version of Firefox, I cannot log into anything related to Google. I can enter my username and password but the "next" or "log in" button or whatever it's called doesn't work at all. The cursor remains as an "arrow" when you hover it over the appropriate button to login and never allows you to click on anything. It's like this regardless if I am logging into YouTube, Google, or Gmail. Other websites could be affected...I don't know. The only way I can access my accounts is to downgrade Firefox to version 90.0.1. Everything seemed to work fine before this last version. I've been using version 90.0.1 for a few days now out of desperation since the most recent version doesn't work. I tried updating just now and even though the update went fine, I still couldn't log in to YouTube or Google.

I just realized too that I cannot access my Microsoft account. When I try to log in, it accepts my credentials but then takes me to the Office 365 Login page as if I never logged in and not to my mailbox. This does not happen on Edge. I don't want to use Edge but between this and the problems with YouTube/Google, I am not seeing many options here.

I'm running Firefox on Windows 10 Pro v1809 64bit.

On a side note: Why does Firefox have to update so much? You guys update this thing and nothing's changed except at times like this when things don't work. That's the only difference I see. I wish you would just stop. Stop having updates every time we turn around---ESPECIALLY if nothing different is happening with the browser. I've used Firefox since it was in a version somewhere in the teens or twenties and honestly, I can't see many differences. This is very much true for the past 20 versions of the browser. I mean... we have 95 primary versions of a browser, not to mention the individual subversions. It's really a hassle.

Asked by gdcarlson1975 1 year ago

Answered by gdcarlson1975 1 year ago

  • Solved
  • Archived

Firestick tv

Can Mozilla vpn be installed on smart tv? I have firestick - Other vpn's can be installed on firestick tv, why can't mozilla vpn be installed on firestick? Can some one … (read more)

Can Mozilla vpn be installed on smart tv? I have firestick - Other vpn's can be installed on firestick tv, why can't mozilla vpn be installed on firestick?

Can some one please help, I have a mozilla vpn subscription, that says that the vpn can be installed on 5 devices, I simply cannot get it on my tv. I've tried several times to no avail.

Asked by Mamapaul 2 years ago

Answered by MagsMoz 2 years ago

  • Locked
  • Archived

New tab background color

Whenever I open a new tab using the + sign the background color is black. I have tried everything I can think of and what I found on the web. Nothing works I hate the … (read more)

Whenever I open a new tab using the + sign the background color is black. I have tried everything I can think of and what I found on the web. Nothing works I hate the black background. I want white with text in black.

Asked by The Mason 2 years ago

Last reply by cor-el 1 year ago

  • Solved
  • Archived

Mirror a Bookmark Folder?

Hey everyone! I had a quick, and maybe weird, question to ask... is there any way to have two separate bookmark folders that are complete mirrors of each other? For exam… (read more)

Hey everyone!

I had a quick, and maybe weird, question to ask... is there any way to have two separate bookmark folders that are complete mirrors of each other? For example, if I added a bookmark to one folder, then the other folder would also have the bookmark added to it.

I sure hope the answer is yes! haha. It would really help my bookmark organization OCD! :D

Thanks everyone!

Asked by Trust Kibou 2 years ago

Answered by TyDraniu 2 years ago

  • Solved
  • Archived

How to Turn Off Data Collection in Mozilla VPN

Hey there, When first opening the MozillaVPN app (in Linux) it gave me to option to consent or decline to data collection of technical information. I consented but would… (read more)

Hey there,

When first opening the MozillaVPN app (in Linux) it gave me to option to consent or decline to data collection of technical information. I consented but would like to decline/turn it off. I know how to do this for the Firefox browser, through the settings and privacy tab; however, I'm having trouble finding a way to turn off / opt-out for MozillaVPN.

Thanks!

(I'm asking this question in this Firefox forum because I was unable to make a new post in the MozillaVPN forum.)

Asked by crabbybabbler 2 years ago

Answered by edubon 2 years ago

  • Archived

The display turns on when a push notification is received

When a push notification is received, the display turns on (via DPMS). Is it possible to get rid of this behavior? Is there some configuration option in Firefox in about:… (read more)

When a push notification is received, the display turns on (via DPMS). Is it possible to get rid of this behavior? Is there some configuration option in Firefox in about:config? I can't exclude that it's not Firefox doing this, but I'm guessing it is.

Asked by zostajekni 1 year ago

Last reply by zostajekni 1 year ago

  • Archived

Changing the language in private mode/tab

I use the private tab for questions or otherwise things I'm too afraid to search up or keep in my history, and it's annoying that the results aren't in english and/or oth… (read more)

I use the private tab for questions or otherwise things I'm too afraid to search up or keep in my history, and it's annoying that the results aren't in english and/or other websites aren't in english. I'd like to know if there is a setting/feature for this.

Thanks in advance!

Asked by RabbitsMayDance 1 year ago

Last reply by cor-el 1 year ago

  • Solved
  • Archived

An extension installed globally for all users (in /usr/share/mozilla/extensions) does not load for an unobvious reason

I need to automate the deployment of Firefox along with the extensions. I put three extensions (uBlock, Translate Web Pages, and Auto Tab Discard) in the /usr/share/mozil… (read more)

I need to automate the deployment of Firefox along with the extensions. I put three extensions (uBlock, Translate Web Pages, and Auto Tab Discard) in the /usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/. All extensions load normally, except Auto Tab Discard. When running firefox with the -jsconsole option, I see what the screenshot shows (the message "Invalid addon ID"). But the installation to user profile is successful. I add the extension ID to manifest.json, and get the following output in the console: addons.xpi-utils WARN addMetadata: Add-on {c2c003ee-bd69-42a2-b0e9-6f34222cb046} is invalid: Error: File /usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/{c2c003ee-bd69-42a2-b0e9-6f34222cb046} does not contain a valid manifest(resource://gre/modules/addons/XPIInstall.jsm:669:11) What can go wrong?

System: Debian 11 (bullseye) Firefox version: 91.4.1esr (amd64)

If you need any other information, please ask, I will write it down.

Asked by zostajekni 1 year ago

Answered by zostajekni 1 year ago