Εμφάνιση ερωτήσεων με ετικέτες:

I cant access Faccebook.com

https://i.gyazo.com/74cf268bf4dff38c2945ff3a3227234f.png This is the constant image i keep getting i have asked AI about it and i have already taken multiple steps cleare… (διαβάστε περισσότερα)

https://i.gyazo.com/74cf268bf4dff38c2945ff3a3227234f.png This is the constant image i keep getting i have asked AI about it and i have already taken multiple steps cleared caches/history, personal settings and others including

Ανοικτό

No Wallpapers!

Hello, I just downloaded v153.0.4 and now there are no wallpapers on my New Tabs or Home Page. No custom url for new tabs either and the Firefox Home is a blank page. Wha… (διαβάστε περισσότερα)

Hello,

I just downloaded v153.0.4 and now there are no wallpapers on my New Tabs or Home Page. No custom url for new tabs either and the Firefox Home is a blank page.

What's up with that?

- Andre'a

Ανοικτό

alt-d stops working until I restart Firefox

On two different Windows machines, current Firefox (153.0.1), the alt-d shortcut stops working: it does nothing until I restart Firefox. Then it works again for a while. … (διαβάστε περισσότερα)

On two different Windows machines, current Firefox (153.0.1), the alt-d shortcut stops working: it does nothing until I restart Firefox. Then it works again for a while. I've tried about:keyboard and it's not reset there. I tried all combinations: Clear, Reset, setting it to alt-d explicitly. None of those worked. But when I set it to alt-a, that worked--but then resetting back to alt-d again didn't work. That shortcut is muscle memory at this point, so it's quite distressing. Not sure what diagnostics might be available to help here, happy to try anything.

Full disclosure: Both machines are Windows 10 but since that's stable, I find it hard to believe that's related.

Ανοικτό 3

Why does firefox go fullscreen randomly on its own?

For at least a few months now, my browser will suddenly and randomly go fullscreen all by itself. I can't exit it, and then it goes back to normal after at most a minute… (διαβάστε περισσότερα)

For at least a few months now, my browser will suddenly and randomly go fullscreen all by itself. I can't exit it, and then it goes back to normal after at most a minute. It hasn't happened in at least a week. But today, it froze like that, not responding. I quit firefox, waited a bit, then restarted it. It went fullscreen and froze again. I waited at least 10min and it then went back to normal and responded again. It only happens when using firefox. I've done virus scans, etc, and it still keeps happening. Please help. Thanks.

Ανοικτό

Some youtube videos do not support picture in picture

From time to time I stumble upon videos that do not have Picture in Picture button and when I switch tab, they do not open PiP automatically. Example: https://youtu.be/Br… (διαβάστε περισσότερα)

From time to time I stumble upon videos that do not have Picture in Picture button and when I switch tab, they do not open PiP automatically. Example: https://youtu.be/BrNglFVnMMw Majority of videos works fine. Do you have any idea what could cause it? Is it some youtube DRM?

Ανοικτό 1

Show Me in the Interface the Controls for Deletion of Browsing Traces

I saw a very confident by a 'support volunteer' that the interface contains controls to delete traces. Show me in the in interface where these files can be deleted: C:\Us… (διαβάστε περισσότερα)

I saw a very confident by a 'support volunteer' that the interface contains controls to delete traces.

Show me in the in interface where these files can be deleted:

C:\Users\User\AppData\Local\Mozilla\Firefox\Profiles\0NB2KS6j.Profile 1\cache2\entries

C:\Users\User\AppData\Local\Mozilla\Firefox\Profiles\0NB2KS6j.Profile 1\safebrowsing

Some very bold claims that I don't see backed up by anything having to do with reality.

Ανοικτό 1

Firefox opens 17 operations for one window eating up memory and processing power

I have a Windows 10 Pro system and Firefox continues to open up at least 17 processes for one internet window. This eats up system resources for nothing more than general… (διαβάστε περισσότερα)

I have a Windows 10 Pro system and Firefox continues to open up at least 17 processes for one internet window. This eats up system resources for nothing more than general web browsing. How can these processes be limited? Thank you.

Ανοικτό 1

need to login on carprog online and disturbed by password logins page thats confusing

the password logins are confusing.disturbing and stifling my project,i need to log in to Carprog Online but your password page wont allow me therefore delaying my time in… (διαβάστε περισσότερα)

the password logins are confusing.disturbing and stifling my project,i need to log in to Carprog Online but your password page wont allow me therefore delaying my time in

Ανοικτό

Hanging requests when closing the browser while offline

Hi! We have automated tests that run in Firefox across a large number of instances. There are about a hundred nodes where the browser is launched. For security reasons, t… (διαβάστε περισσότερα)

Hi! We have automated tests that run in Firefox across a large number of instances. There are about a hundred nodes where the browser is launched. For security reasons, there is no Internet access. When the browser closes, requests are sent to 146.75.117.91. Since there is no Internet connection, the request fails to complete, and the process terminates due to a timeout. Because the browser is controlled by geckodriver, the `driver.close()` call fails with an error. I’ve tried numerous browser startup options, but none solve the problem; the process still crashes. The only thing that works is blocking the IP address at the firewall level or in the `hosts` file. However, I’m not happy with this solution because it would need to be applied to a hundred nodes, which would create scalability issues down the line. Are there perhaps any options I missed? I also found these addresses in `omni.ja`. Could it be that they are hardcoded and cannot be changed via options?


What I tried

  1. телеметрия

options.set_preference('toolkit.telemetry.enabled', False)

options.set_preference('toolkit.telemetry.rejected', True)

options.set_preference('datareporting.healthreport.uploadEnabled', False)

options.set_preference('datareporting.policy.dataSubmissionEnabled', False)

options.set_preference('toolkit.telemetry.shutdownPingSender.enabled', False)

options.set_preference('toolkit.telemetry.shutdownPingSender.enabledFirstSession', False)

options.set_preference('toolkit.telemetry.firstShutdownPing.enabled', False)

options.set_preference("telemetry.fog.init_on_shutdown", False)


pac = """data:text/plain,function FindProxyForURL(url, host) {

   var blocked = [
       "incoming.telemetry.mozilla.org",
       "telemetry.mozilla.org",
       "normandy.cdn.mozilla.net",
       "firefox.settings.services.mozilla.com",
       "contile.services.mozilla.com",
       "push.services.mozilla.com",
       "aus5.mozilla.org",
       "versioncheck.addons.mozilla.org"
   ];
   for (var i = 0; i < blocked.length; i++) {
       if (dnsDomainIs(host, blocked[i]) || host == blocked[i]) {
           return "PROXY 127.0.0.1:1";
       }
   }
   return "DIRECT";

}"""

fp.set_preference('network.proxy.type', 2)

fp.set_preference('network.proxy.autoconfig_url', pac)


  1. Направить телеметрию в несуществующий адрес

options.set_preference('toolkit.telemetry.server', )

options.set_preference('toolkit.telemetry.server_owner', 'localhost')


  1. Или через proxy — завернуть весь трафик в несуществующий прокси
  2. только для доменов телеметрии это сложно, но можно отключить все внешние запросы при shutdown

fp.set_preference('toolkit.telemetry.shutdownPingSender.backgroundtask.enabled', False)


  1. fp.set_preference('toolkit.asyncshutdown.crash_timeout', 10000)

fp.set_preference('telemetry.fog.log.level', 'off')

fp.set_preference('telemetry.fog.artifact_build', False)

  1. Отключить фоновые задачи при shutdown

fp.set_preference('browser.background.tasks.enabled', False)

fp.set_preference('browser.backgroundtasks.scheduled.task.timeout.sec', 0)


  1. Заблокировать через hosts-like механизм Firefox

options.set_preference('network.dns.localDomains',

                 'incoming.telemetry.mozilla.org,telemetry.mozilla.org,normandy.cdn.mozilla.net')


options.set_preference('network.captive-portal-service.enabled', False)

options.set_preference('network.connectivity-service.enabled', False)


  1. Отключить Mozilla Remote Settings

options.set_preference('services.settings.server', )


  1. Glean telemetry (новая система Mozilla)

options.set_preference('telemetry.fog.artifact_build', False)

options.set_preference('telemetry.fog.test.localhost_port', -1)

options.set_preference('toolkit.telemetry.archive.enabled', False)

options.set_preference('toolkit.telemetry.bhrPing.enabled', False)

options.set_preference('toolkit.telemetry.newProfilePing.enabled', False)

options.set_preference('toolkit.telemetry.reportingPolicy.firstRun', False)

options.set_preference('toolkit.telemetry.unified', False)

options.set_preference('toolkit.telemetry.unifiedIsOptIn ', False)

options.set_preference('toolkit.telemetry.prompted ', 2)

options.set_preference('toolkit.telemetry.unifiedIsOptIn ', False)

options.set_preference('toolkit.telemetry.updatePing.enabled', False)


  1. Отключить Glean полностью

options.set_preference('datareporting.glean.enabled', False)

options.set_preference('telemetry.fog.enabled', False)

Ανοικτό 3

news max .com not loading

after the new version of firefox update my home page which i have always had Newsmax.com does not load says problem loading page i have tried several times and it … (διαβάστε περισσότερα)

after the new version of firefox update my home page which i have always had Newsmax.com does not load says problem loading page i have tried several times and it will not load. it works in Google chrome so why not in Firefox

Ανοικτό

Manage cookies no longer appears

Under Settings>Privacy/Security>Browsing Data there is no longer the option to Manage Cookies, despite the help section saying that is where to find it. There is no… (διαβάστε περισσότερα)

Under Settings>Privacy/Security>Browsing Data there is no longer the option to Manage Cookies, despite the help section saying that is where to find it. There is no other place in all of Settings to find the list of cookies. There is only the ability to delete all cookies in History, which I have no desire to do. I edit the cookie list weekly, and it is only now, mid August 2026, under Firefox 153 on Win 10 that I no longer have access to them. How do I get it back?

Ανοικτό 10

Changes to cookie policy with version 152.0.1

With an older version, i was able to clear cookies after visiting secure sites(s) - now I can't find a way to do this. Please bring it back - I consider this to be extrem… (διαβάστε περισσότερα)

With an older version, i was able to clear cookies after visiting secure sites(s) - now I can't find a way to do this. Please bring it back - I consider this to be extremely important for my security!

Ανοικτό 3 1 30