Отображение вопросов с тегом: Показать все вопросы
  • Решено
  • Архивировано

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… (читать ещё)

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?

Задан perihwk+firefox 1 год назад

Дан ответ Mike Kaply 1 год назад

  • Решено
  • Архивировано

Linux - 121 update changed cursor

After updating to version 121, the cursor theme, while having it on the window, changes from the default one (Breeze) to Adwaita while also getting like 2x bigger. How do… (читать ещё)

After updating to version 121, the cursor theme, while having it on the window, changes from the default one (Breeze) to Adwaita while also getting like 2x bigger. How do I change it back to default theme and size?

Задан April22 1 год назад

Дан ответ April22 1 год назад

  • Решено
  • Архивировано

Disable Notifications for only one specifiv Account

I have several mail accounts connected to my thunderbird Version 115.10.1. One of them is a account that regularly notifies me if about updates on my homepage. I want to… (читать ещё)

I have several mail accounts connected to my thunderbird Version 115.10.1.

One of them is a account that regularly notifies me if about updates on my homepage. I want to receive those emails, but I don't want a notification about them. I do however want to receive notifications about emails from other accounts.

How can I disable the notifications for only one account?

Best, Alex

Задан hallo33 1 год назад

Дан ответ hallo33 1 год назад

  • Решено
  • Архивировано

Dark Mode Editor

Hello, I use Thunderbird with the system default theme (dark on win 11). It is great, and when reading Emails, the background is white. So no mails get messed up. But whe… (читать ещё)

Hello, I use Thunderbird with the system default theme (dark on win 11). It is great, and when reading Emails, the background is white. So no mails get messed up. But when replying to mails, the background of the textarea is black and some mails do have black text. So it is impossible to write a mail and keep calm.

Is it in the config or somewhere else possible, to change the color of the textarea to always white / bright?

I do not need any information on how to change the theme for everything to bright as this is not an option.

Thank you!



win 11, 115.4.3 (64-Bit)

Задан heiko25 1 год назад

Дан ответ Toad-Hall 1 год назад

  • Решено
  • Архивировано

userChrome.css - Help With Customizing Tabs

I made a small CSS customization to my tabs in FF 115 ESR on Windows 7, so they would be flat on the bottom and rounded on the top, looking a bit more like tabs instead o… (читать ещё)

I made a small CSS customization to my tabs in FF 115 ESR on Windows 7, so they would be flat on the bottom and rounded on the top, looking a bit more like tabs instead of buttons.

Looked ok in FF 115 ESR.

However, in FF 125, half the tabs are now cut off, including their text (see attached images).

Also the tabs background is darker in FF 115 ESR, providing more contrast between the tabs and the tab bar. In FF 125, it's almost all white and I can hardly distinguish between the tabs and the tab bar.

Why is there such a big difference in appearance between FF 115 ESR on Windows 7, and FF 125 on Windows 10?

Here is the code I used...

/* ------------------ RESIZE TAB BAR ----------------------------- */ \#TabsToolbar { height: 27px !important; margin-top: -1px !important; margin-bottom: 0px !important; } \#tabbrowser-tabs { height:25px!important; min-height:25px!important; }

.tab-background-start[selected=true]::after, .tab-background-start[selected=true]::before, .tab-background-start, .tab-background-end, .tab-background-end[selected=true]::after, .tab-background-end[selected=true]::before {

 min-height:25px!important;

} /* ------------------ RESIZE TAB BAR END ----------------------------- */

/* ------------------ TAB HEIGHT ----------------------------- */

.tabbrowser-tab {
 max-height: 25px !important;
 border-color: #8f939e;

}

.tabbrowser-tabs {

 max-height: 25px !important;
 border-color: #8f939e;

} /* ------------------ TAB HEIGHT END ----------------------------- */

I inserted backslashes at the beginning of the first 2 lines of code above to preserve the hashtag sign (otherwise it displays an index number before those lines), please ignore the backslashes.

I would like my customizations in Firefox 125 to look like the ones I made in 115 ESR.

Is it possible?

Thanks!

Задан Slouch 1 год назад

Дан ответ cor-el 1 год назад

  • Решено
  • Архивировано

Is it possible to remove Mozilla's title bar?

Hi. I was just looking at Google Photos on both Firefox and Chrome. Chrome had a bigger picture because the window had only the tabs bar and the address bar, and Firefo… (читать ещё)

Hi. I was just looking at Google Photos on both Firefox and Chrome. Chrome had a bigger picture because the window had only the tabs bar and the address bar, and Firefox has an additional title bar. I was wondering if it would be possible to remove the title bar so the picture on both browsers were the same size?

Задан a1872 1 год назад

Дан ответ a1872 1 год назад

  • Решено
  • Архивировано

How do I make ALL folders default to descending order

I like to have newest emails at the top of the list rather than bottom. I have just moved 30GB of email data to TB from 20 yrs on Mac Mail. Hooray! I don't need to expl… (читать ещё)

I like to have newest emails at the top of the list rather than bottom. I have just moved 30GB of email data to TB from 20 yrs on Mac Mail. Hooray!

I don't need to explain how many local folders I've got, and the pain it will be to sort every folder manually!

Please could someone advise me how to force all folders to sort by date/descending? thanks

Задан mozilla516 1 год назад

Дан ответ david 1 год назад

  • Решено
  • Архивировано

Refresh Button mysteriously disappeared?

This is a silly one, probably. My refresh button has mysteriously disappeared from my browser toolbar. I can just use cmd+shift+r to refresh, but muscle memory keeps … (читать ещё)

This is a silly one, probably.

My refresh button has mysteriously disappeared from my browser toolbar. I can just use cmd+shift+r to refresh, but muscle memory keeps looking for the button on screen too, and it would be nice to have it back!

I opened up the customize options, thinking maybe I just removed it by accident, but refresh doesn't appear to be an option?

I also opened it up in troubleshoot mode to see if that would change anything. It did not :(

I also don't have any extensions that mess with the toolbar, so I don't think that would be an issue (and troubleshoot mode should have disabled extensions anyway I think.)

I recently updated to 126.0.1 - no idea if that has anything to do with it, but this did happen right after the update.

There are a couple more people on here with the same question, and they all had easy solutions. I'm hoping I'm just not seeing a setting somewhere.

Thanks!

Задан Rainingredpandas 1 год назад

Дан ответ Rainingredpandas 1 год назад

  • Решено
  • Архивировано

Hide or show system window title bar

I have a new PC running Kubuntu 22.04, with Mozilla Firefox 120.0.1 (64 bit) installed. Standard, the system window title bar was hidden. But I wanted access to the "Mo… (читать ещё)

I have a new PC running Kubuntu 22.04, with Mozilla Firefox 120.0.1 (64 bit) installed. Standard, the system window title bar was hidden. But I wanted access to the "Move to desktop" menu and wanted the title in the title bar. So, in "Customize toolbar" I checked "Title bar". The title bar reappeared, but a complete border along the Firefox window became inaccessible, and when clicking in that zone, it effectively clicked in the window behind. In particular, the complete menu bar is inaccessible, as well as the scroll bar on the left and in the bookmarks sidebar the fold/unfold. And Mozilla Thunderbird 115.5.0 has the same annoying behaviour. Even when hovering over some menus in the Mozilla window, you can sometimes see reactions from the window under the Mozilla window. On older Kubuntu computers (up to 18.04) with older versions of Firefox (up to 113.0.2) and Thunderbird (up to 102.11.0) I do not have that problem. How can I get at the same time access to both the system title bar and the menu bar ?

Задан th.pauwels 1 год назад

Дан ответ th.pauwels 1 год назад

  • Решено
  • Архивировано

How do i increase the no. of columns in topSites in new tab page

i would like to increase the no of columns for TopSites in newTab page to more than 8 columns. there is a method to increase the no. of rows but since my monitor is wide… (читать ещё)

i would like to increase the no of columns for TopSites in newTab page to more than 8 columns.

there is a method to increase the no. of rows but since my monitor is wide I would like to have increased no. of columns which will let me to view all the topSites in a single page without any scrolling.

Is there any property that can be added in the about:config page to increase the no. of columns.

Задан ashwinrajesh65 1 год назад

Дан ответ ashwinrajesh65 1 год назад

  • Решено
  • Архивировано

Keyboard shortcut to copy current tab URL

Is there a way to create a new keyboard shortcut to copy current tab URL? I've been using Arc to try some of their features, and what I miss the most is the hability to … (читать ещё)

Is there a way to create a new keyboard shortcut to copy current tab URL?

I've been using Arc to try some of their features, and what I miss the most is the hability to copy current URL to share without touching the mouse.

Задан Sebastian 1 год назад

Дан ответ jscher2000 - Support Volunteer 1 год назад

  • Решено
  • Закрыто
  • Архивировано

How to disable protection, or enable dark mode, for Firefox pages

I've always liked the Firefox New Tab page, with Pocket, and until today, DarkReader plugin has always worked. But now it says that it can't because the page is protecte… (читать ещё)

I've always liked the Firefox New Tab page, with Pocket, and until today, DarkReader plugin has always worked. But now it says that it can't because the page is protected.

I tried the solution to use bookmarklets, suggested in https://support.mozilla.org/en-US/questions/1350781, but it didn't have any effect (https://sanketmehta7.github.io/DarkMode-JS-BookMark/

If I can't find a solution, I'll just ditch Pocket, and use Google as my first page, or something. Or maybe ditch Firefox, which doesn't seem to think that dark mode is important. I don't like being blinded by the light.

Задан Jeff Learman 1 год назад

Дан ответ cor-el 1 год назад

  • Решено
  • Архивировано

Option for "Goto (local IP)" instead of "Search Google for (local ip)"

One quality of life thing I really miss after switching from Chrome is the option to "Goto ip" when you highlight and right click on a local ip address. I do a lot or ne… (читать ещё)

One quality of life thing I really miss after switching from Chrome is the option to "Goto ip" when you highlight and right click on a local ip address.

I do a lot or networking and am going to local ip addresses all the time (ie 192.168.1.1 or 10.0.20.15). When I highlight an address in the local ranges in Chrome it gives the "Goto" option, but Firefox always offers "Search Google for"

I really miss this option and unfortunately all my searching has not yield a solution since search engines cant quite make sense of my requests.

Hopefully someone here can nail something down.

Thanks!

Задан judsonspam 2 года назад

Дан ответ cor-el 2 года назад

  • Решено
  • Архивировано

Profile Root Directory does not exist

In the about:profiles page I can see that the Root Directory for my current profile is: /home/username/.mozilla/firefox/no9r1iq5.default-release-1681391696978 When I clic… (читать ещё)

In the about:profiles page I can see that the Root Directory for my current profile is: /home/username/.mozilla/firefox/no9r1iq5.default-release-1681391696978 When I click the Open Directory button it does nothing. When I manually navigate to /home/username/.mozilla/firefox I can see that there is no folder there called no9r1iq5.default-release-1681391696978

The Local Directory is show as: /home/username/.var/app/org.mozilla.firefox/cache/mozilla/firefox/no9r1iq5.default-release-1681391696978 This exits and opens with the Open Directory button.

If I search for no9r1iq5.default-release-1681391696978 in the file manager, I see that there are two folders with this name, on at the Local Directory path shown above and the other at: /home/username/.var/app/org.mozilla.firefox/.mozilla/firefox My assumption is that this is actually the Local Folder (it contains files with today's date)

My question is, why does about:profiles show the wrong path for the Local Directory or why is the actual Local Directory in the wrong place (it appears that the path shown in about:profiles is the normal default location)?

I tried creating a new profile and it was created in exactly the same way: the Local directory path is: /home/username/.var/app/org.mozilla.firefox/.mozilla/firefox but about:profiles says it is: /home/username/.mozilla/firefox

I would rather have my profile in the normal default location but I want to ensure that I don't leave pointers to the wrong location that could cause problems.

I am running Firefox 121.0 (64-bit) from flathub on Debian GNU/Linux 12 (bookworm).

Any help appreciated.

Задан Chris 1 год назад

Дан ответ zeroknight 1 год назад

  • Решено
  • Архивировано

Can't pin extensions to the toolbar using the extension button

Hello folks According to Firefox help pages, pinning an extension to the toolbar should work as follows: "Click the extensions button (jigsaw puzzle Fx109ExtensionsButt… (читать ещё)

Hello folks

According to Firefox help pages, pinning an extension to the toolbar should work as follows:

"Click the extensions button (jigsaw puzzle Fx109ExtensionsButton icon) in the toolbar to open the extensions panel. Each extension in the panel has a menu button with a gear Fx91GearIcon icon. You can use this menu button to manage those extensions."

The extensions button doesn't seem to work like that for me. When I click the Extensions button I get several buttons (Recommendations, Extensions etc) on the left side of the page as in the first image attached (Firefox1).

If I then click the Extensions button I get to the Manage Extensions page, and if I then click the 3 dots (...) button on (say) Proton Pass I don't get a Pin to Toolbar option and clicking the Manage option opens the Proton Pass Details page (see image Firefox2) - none of the buttons on the any of the pages offers a Pin to Toolbar option.

Those extensions that are pinned to the toolbar, such as Adblock Plus ( see Firefox2 image), got pinned during installation and not by using the extensions button. Currently I seem to have no way of interacting with any extension via the extensions button.

Could be I'm doing something silly but any suggestions would be appreciated.

Regards Ken

Задан kenliz 1 год назад

Дан ответ jscher2000 - Support Volunteer 1 год назад

  • Решено
  • Архивировано

Full screen mode

When in full screen mode, how do I hide the tab bar and the main tool bar. I only want to see them when I move the mouse to the top of the screen like in Safari.

Задан bsisler 1 год назад

Дан ответ zeroknight 1 год назад

  • Решено
  • Архивировано

Can I change the background colour of unread messages in list?

If I mark a message as Unread, it appears in the list of messages in boldface type. But I am finding it very hard to distinguish those in bold from other messages that ha… (читать ещё)

If I mark a message as Unread, it appears in the list of messages in boldface type. But I am finding it very hard to distinguish those in bold from other messages that have been read and are not bold. Is there anything in advanced settings that would allow me to change the fill colour in the listing box, or perhaps the colour of the type, in order to distinguish unread messages more visibly from those I have read? Thanks!

Задан Clive Chafer 1 год назад

Дан ответ Toad-Hall 1 год назад

  • Решено
  • Архивировано

Won't switch to new tab when right-clicked

I've searched for answers. I tried the About:config and changing some settings to false and others to true as suggested (e.g. browser.search.context.loadInBackground), et… (читать ещё)

I've searched for answers. I tried the About:config and changing some settings to false and others to true as suggested (e.g. browser.search.context.loadInBackground), etc., and of course I have the option chosen under settings.

This is a new computer. My old computer would switch to the new tab when I right click it, but this new one won't.

Any latest fixes?

Задан Bobg 1 год назад

Дан ответ zeroknight 1 год назад

  • Решено
  • Архивировано

Disable New Translation tool

I updated to the latest version of firefox and am not pleased with the translation tool automatically detecting the wrong language on sites. Is there any way to fully dis… (читать ещё)

I updated to the latest version of firefox and am not pleased with the translation tool automatically detecting the wrong language on sites. Is there any way to fully disable it? I currently have no languages installed yet it pops up offering to "translate".

Задан EarlofBirds 1 год назад

Дан ответ jscher2000 - Support Volunteer 1 год назад