Windows 10 reached EOS (end of support) on October 14, 2025. For more information, see this article.

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

En savoir plus

External open specific url will open on container

  • 2 réponses
  • 0 a ce problème
  • 6 vues
  • Dernière réponse par kolAflash

options supplémentaires

I've exactly the same problem as described here. https://support.mozilla.org/de/questions/1442833

> For some reason, in my firefox profile, when I try to access > "https://accounts.google.com", it open on new tab with a specific > container, while other url keep open with no container. I've never > configure this behavior, or found a setting to fix it.

This is a privacy problem, because most of the time when I open a website like google.com, I don't want to be logged in so the website can identify me. I only keep a container tab for such a website around, so I can open it if I explicitly want to be logged in.

I've exactly the same problem as described here. https://support.mozilla.org/de/questions/1442833 > For some reason, in my firefox profile, when I try to access > "https://accounts.google.com", it open on new tab with a specific > container, while other url keep open with no container. I've never > configure this behavior, or found a setting to fix it. This is a privacy problem, because most of the time when I open a website like google.com, I don't want to be logged in so the website can identify me. I only keep a container tab for such a website around, so I can open it if I explicitly want to be logged in.

Toutes les réponses (2)

options supplémentaires

P.S. I think the problem always happens under these condition.

First any container tab add-on has to be installed, to make container tabs available. I've tested these: https://addons.mozilla.org/firefox/addon/multi-account-containers/ https://addons.mozilla.org/firefox/addon/cookie-autodelete/ https://addons.mozilla.org/firefox/addon/firefox-new-container-tab/

Then the same domain must currently NOT be opened in any other tab. Except in at least one tab which is a container tab.

Under this condition, Firefox seems to open links to this domain from external programs in the same container. Tested with Firefox-140.5.0esr and Firefox-145.0.2. Tested with newly created Firefox profiles.

This behavior may be quite useful for informed users. But without any explanation it's very irritating. Especially if the existing tab with the same domain in the same container is in another Firefox windows, outside of your current view.

options supplémentaires

Hacky workaround:

.

Create a local file: forward.html

   <script>location.href = location.hash.slice(1)</script>

.

.

Now you may call Firefox on this file instead of calling Firefox directly on the URL. This will open "forward.html" in a new tab, so Firefox won't use a container when creating the new tab. ("file://" is important to pass the #... part)

   /usr/bin/firefox file:///home/user/forward.html#http://example.net/

.

.

You may automate this on Linux with a Bash script: firefox-no-container.bash

   #!/bin/bash
   new_args=()
   for arg in "${@}"; do
       new_args+=("file:///home/user/forward.html#${arg}")
   done
   exec firefox "${new_args[@]}"

Modifié le par kolAflash

Poser une question

Vous devez vous identifier avec votre compte pour répondre aux messages. Veuillez poser une nouvelle question, si vous n’avez pas encore de compte.