Showing questions tagged: Show all questions

Customize the location of print headers and footers?

Hi. Is there a way to customize the order of Firefox headers and footers on printed pages (including print-to-pdf)? I prefer the header to be url only, in the center. … (read more)

Hi. Is there a way to customize the order of Firefox headers and footers on printed pages (including print-to-pdf)?

I prefer the header to be url only, in the center. While the footer has page on left; title in the center, and date on the right.

This used to be easy to accomplish with print options in older versions, then -- as the print dialog changed (and actually improved a lot in most *other* ways) I had to turn to about:config modifications like those described in the 1/27/21 reply here: https://support.mozilla.org/en-US/questions/1323433. But now I can't seem to find any way to have any control over print headers besides "on" and "off."

One problem I find with having both page title and url on top is that these can be long, causing one or both to be truncated.

I'm using Firefox 115.3esr.

Asked by Rick216 22 hours ago

I need help with resizing pop up windows in firefox, they are too large to interact with.

Many websites I use on a regular basis have become unusable on firefox which i have used for over a decade. I can't change my Flickr cover photo because the pop up window… (read more)

Many websites I use on a regular basis have become unusable on firefox which i have used for over a decade. I can't change my Flickr cover photo because the pop up window is too huge, can't view a complete google doc because the thing is enormous, etc. The issue is that I MUST have the ability to set text in firefox to larger and I do so via the view - zoom in and zoom text only options. I have to have this ability because I have a visual disability. I do not have this issue using chrome but I detest chrome and want to keep using firefox, but entire portions of windows are cut off when they open up and I can't access them by zooming out either. The only thing that changes is the text gets so small that it is totally unreadable. This is a HUGE problem for me. I will NOT change my default windows setting to try and fix a firefox issue because that then screws up my window sizes for games, programs etc for my other software that I also use daily. So I won't be changing what works for 20 programs via windows settings to make ONE browser work better. This is a firefox problem, and firefox needs to fix it. I have tried multiple solutions cited online and nothing is working. If firefox is trying to get rid of it's users with visual disabilities, this is the way to go. Here is an image link that shows the issue on flickr. The pop up should be completely visible and should have a scroll portion to resize the selected image in the lower portion of that circle, but it gets totally cut off and there is no scrollbar to move down, nor doe trying to resize or zoom out on these pop ups help, nothing changes. https://gyazo.com/11dc090e7209c13a3e4cff37246aa6b5 this is how it should properly look / work, pic taken on chrome browser https://gyazo.com/0689a605b7a60857c9c15b9c9fec4a07

Asked by myhaybug 1 week ago

Last reply by myhaybug 6 days ago

How do I disable drag and drop text going to the dragged URL?

If you drag text onto a Firefox window, it interprets that text as a URL and goes to that page. This is a problem because the only time I drag and drop text onto a Firefo… (read more)

If you drag text onto a Firefox window, it interprets that text as a URL and goes to that page. This is a problem because the only time I drag and drop text onto a Firefox windows is a password from my password manager. If I slightly miss the text box, it interprets the password as a URL and tries to go to it. This (a) Does a DNS lookup of the password. As there usually won't be a valid extension, I expect this only gets as far as my router, but it's still not ideal. (b) The page I was on has now gone, replaced with the "Couldn't connect to server" page, so I need to start again. Usually this is just a login page, which isn't a massive issue, but if it's a registration page I lose all the data I'd entered on that page, and even if it is just a login page, some badly implemented sites can lose information if you step out of the workflow.

Asked by madanra 12 hours ago

Youtube search/top bar darkens if my cursor isn't over it

(first question, new to firefox, sorry if i did anything wrong!) On youtube there's the top bar, including the search bar, youtube home, notifications, your accounts, et… (read more)

(first question, new to firefox, sorry if i did anything wrong!)

On youtube there's the top bar, including the search bar, youtube home, notifications, your accounts, etc.. If my mouse isn't hovering directly over this area, it becomes darker, such as the whites turning into grays. What setting in about:config should i change to make it stay light and, well, normal, no matter where my cursor is?

Asked by Sezija 3 days ago

Last reply by Sezija 2 days ago

How can I clean up my address box from all these pesky icons?

I run several of my Firefox windows in compact sizes, and there are just so many little icons taking up space in the address typing field (what do you call it? It isn't t… (read more)

I run several of my Firefox windows in compact sizes, and there are just so many little icons taking up space in the address typing field (what do you call it? It isn't the address bar).

I do not use the Tracker shield. I do not use Padlock "Verified". I do not use "You have granted this website blah blah permissions". I do not use Open in Picture-in-Picture, or the bookmark buttons.

These features, when I need them, I would rather access from somewhere else, like from a menu or with a shortcut key combo.

See the image of how cramped it is with the imo superfluous buttons that for some reason decided they have to live in the text box, preventing me from seeing what I type.

Asked by sbirch2 5 days ago

Last reply by sbirch2 5 days ago

What is the proper format for the ExtensionSettings policy registry key/value that is used to manage browser extension settings?

When looking at the ExtensionSettings page for Firefox or Chrome they both use an example that shows the registry key Software\Policies\Mozilla\Firefox\ExtensionSettings… (read more)

When looking at the ExtensionSettings page for Firefox or Chrome they both use an example that shows the registry key Software\Policies\Mozilla\Firefox\ExtensionSettings (REG_MULTI_SZ) being set to a long JSON string with every extension ID and the settings for that particular ID. For example...

{

 "*": {
   "blocked_install_message": "Custom error message.",
   "install_sources": ["https://yourwebsite.com/*"],
   "installation_mode": "blocked",
   "allowed_types": ["extension"]
 },
 "uBlock0@raymondhill.net": {
   "installation_mode": "force_installed",
   "install_url": "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi"
 },
 "https-everywhere@eff.org": {
   "installation_mode": "allowed"
 }

}

The problem with this method is that if I am installing an extension, and I overwrite what already exists in Software\Policies\Mozilla\Firefox\ExtensionSettings then all of those other settings get removed. So even if I am a non-malicious actor and just make a mistake with my installer I can easily delete every other extension's settings. Instead what I have to do is during install I have to read the current value of Software\Policies\Mozilla\Firefox\ExtensionSettings and then insert my extension's settings into the JSON blob.

So the examples that Firefox and Chrome provides do of course work, however they do not make very much sense to me. Why would it be formatted this way since all of those are additional key/value pairs and that is exactly what the registry excels at storing. So why put all of those into a single key/value instead of breaking them into multiple?

Additionally breaking them a part into multiple key/value pairs does work! So if instead of the example above I were to split them into multiple key value pairs it works just fine!

Software\Policies\Mozilla\Firefox\ExtensionSettings

   uBlock0@raymondhill.net
       "installation_mode": "force_installed",
       "install_url": "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi"

So knowing that this way with multiple key/value pairs works why am I bothering to ask this question at all instead of just doing it the way that makes sense to me? Well the issue is that by breaking it up into multiple key value pairs it actually overrides the other method and makes it so that all those registry settings are ignored. So it doesn't delete them but it still leaves me with nearly the exact same problem.

While I believe "my" way is superior because it uses the registry in a more common sense route, if that is not what the majority of extension developers do then it doesn't matter and I should be conforming to the other way.

As I am typing this question up I did realize just how hard/annoying it is to properly format and make it clear and digestible what the multi key/value format of the registry would look like instead of being a JSON string. So perhaps that is the reason why all the documentation puts it all as one JSON string?

Asked by perihwk+firefox 3 hours ago

in a corporate environment, using Kerberos authentication to authenticate AD user to OKTA (IdP) via Firefox

We have used Firefox in our environment for well over a year in the configuration explained here: https://help.okta.com/en-us/content/topics/directory/ad-dsso-configure-b… (read more)

We have used Firefox in our environment for well over a year in the configuration explained here: https://help.okta.com/en-us/content/topics/directory/ad-dsso-configure-browsers.htm

OKTA is our Identity provider to do Single Sign on to our SaaS applications.

today when version 118 rolled out, this functionality stopped working. Can you help me to get this working again. Chrome and Edge are not affected, so we have options, but we would really like to use Firefox.

Thanks so much for your help

Scott

Asked by Scott Voll 41 minutes ago

Ctrl Shift Enter - Dot Net, Dot Org

You know how you can type a URL and then Ctr+Enter and FF autopopulates the .com? Well years ago "Shift+Enter" autopopulated ".net" and "Ctrl+Shift+Enter" autopopulated "… (read more)

You know how you can type a URL and then Ctr+Enter and FF autopopulates the .com? Well years ago "Shift+Enter" autopopulated ".net" and "Ctrl+Shift+Enter" autopopulated ".org".

I really liked that feature. I know a lot of people don't, or don't see its point; that's not important.

About three years ago, I added UserChrome.js and enable-UserChrome.js , which acomplished the two autopuopulating tasks quite nicely.

Until about four weeks ago. I don't know if an FF update stopped reading those two .js files, or if there's a conflict somewhere else, or what. I don't know where to begin - other than posting here for help.

Thanks in advance!

  • UserChrome.js is in the subdirectory: C:\Users\[ME]\AppData\Roaming\Mozilla\Firefox\Profiles\gaydtewj.default-release-1
  • enable-UserChrome.js is in C:\Program Files\Internet Shenanigans\Mozilla Firefox\defaults\pref (firefox.exe is in C:\Program Files\Internet Shenanigans\Mozilla Firefox )

Asked by RJB 1 day ago

Last reply by RJB 1 day ago

bottom scrollbar

I want to make the bottom scroll bar specially to be appeared only on hover and not when scrolling or even make it 100% transparent? I really dont want the bottom scrollb… (read more)

I want to make the bottom scroll bar specially to be appeared only on hover and not when scrolling or even make it 100% transparent? I really dont want the bottom scrollbar to interface

Asked by ryanksa444 1 week ago

Last reply by ryanksa444 6 days ago

Can't drag-drop gmail file to my computer

Hello, I can't seem to find a way to drag and drop gmail attachment from gmail to my computer. WWhat it does, instead of moving a file, it creates some preview url file… (read more)

Hello,

I can't seem to find a way to drag and drop gmail attachment from gmail to my computer. WWhat it does, instead of moving a file, it creates some preview url file.

Is there any way to be able to download the file by dragging it from gmail to my computer?

Asked by Mitja Gabersek 1 day ago