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

New computer with W11, Ctrl + Shift + S shortcut will not work in Firefox

Hello! I recently got a new computer with Windows 11 freshly installed. I downloaded Firefox, went to take a screenshot, and the usual shortcut of Ctrl + Shift + S does … (читать ещё)

Hello!

I recently got a new computer with Windows 11 freshly installed. I downloaded Firefox, went to take a screenshot, and the usual shortcut of Ctrl + Shift + S does not work. I can right click and Take a Screenshot, and I can use other Ctrl + Shift shortcuts, like Ctrl + Shift + T to reopen closed tabs. The only one that doesn't work is screenshots. I can also put Screenshots in my top row Toolbar and use it, just not the keyboard shortcut.

I refreshed Firefox, uninstalled and reinstalled Firefox, as well as checked the about:config extensions.screenshots.disabled preference. It has been set to false, so I have set it to true and false again hoping it would "reset" it but nothing. Thank you!

Задан smith87345 7 месяцев назад

Дан ответ zeroknight 7 месяцев назад

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

Recommended by Pocket option missing in settings

I have Firefox installed on two PCs. I see the option to add "Recommended by Pocket" under Settings/Home, but on the other one I don't. Screen shots of both are attached.… (читать ещё)

I have Firefox installed on two PCs. I see the option to add "Recommended by Pocket" under Settings/Home, but on the other one I don't. Screen shots of both are attached. I have completely uninstalled, cleaned up all Firefox files and re-installed Firefox multiple times on the PC where I don't see the Pocket option but nothing changes. Also gone into about:config and tried making changes from there. I want the Pocket recommendations to show on the Firefox Home page for both PCs.

Thanks

Задан marinemonk 7 месяцев назад

Дан ответ zeroknight 7 месяцев назад

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

Can't Stop Firefox from Reloading Crashed Session

The problem is that even after I've tinkered with the about:config settings to prevent Firefox from restoring my previous session after a crash, it just won't listen! The… (читать ещё)

The problem is that even after I've tinkered with the about:config settings to prevent Firefox from restoring my previous session after a crash, it just won't listen! The changes I make in about:config don't seem to save, and every time Firefox crashes, it happily reloads my old tabs and windows.

Your assistance would be greatly appreciated!

OS: Arch Linux DE: Gnome 44

Задан Anon 7 месяцев назад

Дан ответ zeroknight 7 месяцев назад

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

Prevent Firefox from starting automatically

I have followed the steps in the "Prevent Firefox from starting automatically" article: https://support.mozilla.org/en-US/kb/firefox-starts-automatically-when-i-restart-w… (читать ещё)

I have followed the steps in the "Prevent Firefox from starting automatically" article: https://support.mozilla.org/en-US/kb/firefox-starts-automatically-when-i-restart-window

But Firefox keeps starting automatically when I restart my computer. Attached is an image of how the settings are now.

What should I do? This is a bit annoying. I don't use Firefox as my main browser but I work as a customer success manager for an online platform and always need to do some tests on Firefox, but I don't want it to start automatically when I turn on my computer.

I'll for instructions.

Thank you

Задан Monique Lonardi 7 месяцев назад

Дан ответ cor-el 7 месяцев назад

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

Keyboard navigation on search results

I want to navigate on search results using the keyboard. I could use tab but it suggests all interactive elements such as news, images, books, videos, search settings and… (читать ещё)

I want to navigate on search results using the keyboard. I could use tab but it suggests all interactive elements such as news, images, books, videos, search settings and etc one by one. I want to press something and make active first result, then second. If such hotkeys are not provided, maybe there are any extensions with similar functionality?

Задан LuchnikKek 7 месяцев назад

Дан ответ LuchnikKek 7 месяцев назад

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

Tab freezes for about 10 seconds when using google search

When i go to google.com and enter search query the tab "hangs" for about 10 seconds before the next page starts to load Same issue on 2 separate machines (1 intel laptop,… (читать ещё)

When i go to google.com and enter search query the tab "hangs" for about 10 seconds before the next page starts to load Same issue on 2 separate machines (1 intel laptop, 1 amd pc) both on newly installed windows 11 pro

what i've tried: safe mode, disabling hardware acceleration, disabling antivirus (kaspersky, without any browser plugins or safe browsing) , but the issue persists

here's the video: https://youtu.be/qMY-38z_TC0

Задан Kairali 7 месяцев назад

Дан ответ zeroknight 7 месяцев назад

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

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 7 месяцев назад

Дан ответ Mike Kaply 7 месяцев назад

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

Firefox webpages freeze for 5-10 seconds sometimes when going back a page or clicking a link

For a few weeks now, Firefox has been often freezing a webpage for 5-10 seconds during browsing. It mostly happens when going back to the previous page, but also when cli… (читать ещё)

For a few weeks now, Firefox has been often freezing a webpage for 5-10 seconds during browsing. It mostly happens when going back to the previous page, but also when clicking a link or doing a google search. For those 10 seconds, you can't do anything on the page; no clicking other links or selecting text.

I've already tried: - troubleshoot mode; it still happens when all extensions are turned off - turning on/off hardware acceleration - creating new places databes - updating to the newest version

What can i do to fix this?

Задан jules50_5 7 месяцев назад

Дан ответ zeroknight 7 месяцев назад

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

Fuentes pixeladas en algunas páginas con Debian 12

Hola. Mi ordenador tiene Debian 12. Utilizo Firefox 118, instalado a través de Flatpak. El problema que tengo en algunas páginas es que veo las fuentes pixeladas y la im… (читать ещё)

Hola. Mi ordenador tiene Debian 12. Utilizo Firefox 118, instalado a través de Flatpak. El problema que tengo en algunas páginas es que veo las fuentes pixeladas y la impresión es muy defectuosa, hasta el punto de no entender lo que aparece escrito. Esto sólo pasa en algunas páginas.

Si descargo directamente Firefox desde la página de Mozilla y abro la paǵina con una configuración limpia del navegador, las fuentes se ven correctamente; sin embargo, si sincronizo los datos de usuario, instalándose los datos, extensiones y demás las fuentes en determinadas páginas se ven mal.

Desactivé las extensiones pero el problema no se resuelve. Desde una instalación limpia de Firefox instalé una a una las extensiones y complementos, pero no logré reproducir el problema. Borré incluso la caché del navegador, pero nada. Y también sincronicé los datos de usuario en una instalación de Firefox en Fedora, pero el resultado es también negativo.

Alguna idea?

Gracias.

Задан Xosé Manuel Baños García 7 месяцев назад

Дан ответ Xosé Manuel Baños García 6 месяцев назад

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

Why is this not syncing??

This is my second email to you.... I just switched to Firefox from Chrome, because Chrome was crashing all the time. All I want to do is sync my computer, laptop, phone… (читать ещё)

This is my second email to you....

I just switched to Firefox from Chrome, because Chrome was crashing all the time.

All I want to do is sync my computer, laptop, phone and Ipad's reading list. I want to be able to see an article on one device, add to the reading list, and have it on all devices.

I'm logged in under the same name on all, and it says sync is on, but the reading lists are different.

Can someone help me? My phone number is [removed phone# from public support forum], email is [removed email from public].

Thank you!

Задан isenberg31 7 месяцев назад

Последний ответ от James 7 месяцев назад

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

Bypass Microsoft Teams block

I'm trying to use Microsoft Teams in Firefox because the native app for Linux is abandoned and crashes, and at first sight the app is blocking Firefox on purpose. Buttons… (читать ещё)

I'm trying to use Microsoft Teams in Firefox because the native app for Linux is abandoned and crashes, and at first sight the app is blocking Firefox on purpose. Buttons to make calls are disabled, stating that audio and video are not supported in my browser, but everything works normally if join to existing calls using e.g. links.

Is it possible to trick Teams to think I'm using Chrome? I found the "User-Agent Switcher and Manager" add-on, but I can't figure out how to possibly use it.

Задан Álvaro González 7 месяцев назад

Дан ответ TyDraniu 7 месяцев назад

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

Is there a way to disable extension access to specific websites?

From a security / QOL pov I'd like to disable an extension on some websites, and was wondering if there were any methods to do this? I searched this question first throu… (читать ещё)

From a security / QOL pov I'd like to disable an extension on some websites, and was wondering if there were any methods to do this?

I searched this question first through reddit and the support site and found similar questions with no updates asked between 4-6 years ago, wondering if there's been a method implemented yet or if it's still not possible.

Thanks!

Задан ashrnkhan65 7 месяцев назад

Дан ответ zeroknight 7 месяцев назад

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

spell check

Is spell-checking done locally on my computer, or is it done on the Mozilla website? I just found out that the Chrome and Edge browsers send my typed message to the home… (читать ещё)

Is spell-checking done locally on my computer, or is it done on the Mozilla website? I just found out that the Chrome and Edge browsers send my typed message to the home office, and that is where the spell-checking is done. Can I assume that this process is done locally on my own computer with Firefox?

I've been paranoid about security for many years, and every little bit of info I can add to my personal well-being lets me sleep that much better at night.

I am currently 82 years of age and have been using Firefox since it first became available, just because of its advertised security features. Quite happy with it and hope it stays on top of my needs.

And I have the same question regarding Thunderbird and its security properties.

Thank you.

Bob ([removed email from public support forum])

Задан rtb415 7 месяцев назад

Дан ответ James 7 месяцев назад

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

upon win 10 startup, a program with an OLD firefox logo appears on my taskbar, opens nothing, and then closes itself

Hi! please help me lmao i'm not sure wtf is going on. I recently (as of a week ago) had to wipe my pc and reinstall windows 10 after a botched update. So i installed fir… (читать ещё)

Hi! please help me lmao i'm not sure wtf is going on. I recently (as of a week ago) had to wipe my pc and reinstall windows 10 after a botched update. So i installed firefox on a practically new pc. thing is... when i turn it on, i get this baby in my taskbar (see image): right under the pinned firefox and thunderbird logo, i get a really scrungly OLD (and i mean OLD) firefox logo. clicking it opens nothing. hovering over it shows a preview of a blank window with a random string as title. clicking it only opens a second blank window with nothing in it. eventually when windows finishes starting up, it closes itself. i'm scared it might be a virus. help? how do i make it stop??

I'm running firefox 117.0.1 on windows 10 home single language 1903 (sorry if that's wrong, i dont know where to check otherwise)

Задан po.headquarters 7 месяцев назад

Дан ответ zeroknight 7 месяцев назад

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

Google maps 'corruption'

Any ideas why I am seeing these strange rectangles on Google maps? Confirmed not caused by an extension as I still see them in Private window and do not see them when u… (читать ещё)

Any ideas why I am seeing these strange rectangles on Google maps?

Confirmed not caused by an extension as I still see them in Private window and do not see them when using Brave.

They don't stay in the same geographical location when zooming in and out.

Задан eddielenton 7 месяцев назад

Дан ответ zeroknight 7 месяцев назад

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

website header/links showing in reader view

I run a website that is custom built and we are seeing a potential issue in which the headers and header links are showing in the reader view of every page above the cont… (читать ещё)

I run a website that is custom built and we are seeing a potential issue in which the headers and header links are showing in the reader view of every page above the content for the page. But I'm also not sure if this is necessarily bad or might be affecting SEO.

Does anyone know whether this is detrimental to SEO, and if so, are there any suggestions on what might be causing this to happen in the code?

Задан cmenne 6 месяцев назад

Последний ответ от robbert 1 месяц назад

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

Browser hijaker FindItPro ruins the whole experience

I want to report that spyware named FindItPro which I, foolishly, downloaded. Well, it's a virus, right? But no antivirus can delete it completely. It comes back and you … (читать ещё)

I want to report that spyware named FindItPro which I, foolishly, downloaded. Well, it's a virus, right? But no antivirus can delete it completely. It comes back and you can't find the source. So, there should be some problem in your browser that allows it to live.

I'll send you a website where I got it. [link to suspected malware removed] BE CAREFUL. Virus will be downloaded along with Opera browser or something. I'll send this report also to some antivirus company. Yes, I was foolish, but I hope you will fix it.

Задан kirill.prilezhaev 7 месяцев назад

Дан ответ Paul 7 месяцев назад