vscode-firefox-debug icon indicating copy to clipboard operation
vscode-firefox-debug copied to clipboard

Firefox option "Ask to save logins and passwords for websites" always disabled

Open Starli0n opened this issue 3 years ago • 2 comments

Hi,

I do not know if it is a bug or a feature but the following option is always disabled when starting the debugging:

  • Ask to save logins and passwords for websites

Even though, it is enabled in the original profile, it is systematically disabled.

We can see it in the about:config under signon.rememberSignons: False

It is really annoying and it is a no go to use this extension for me as I have to enter my login/password each time I am debugging my website. I wanted to switch from Chrome to Firefox Developer Tool, but for now I will not, except if a workaround exists.

Starli0n avatar Nov 21 '22 23:11 Starli0n

hey @Starli0n Here is a workaround that I'm using for now

           "request": "launch",
           "reAttach": true,
           "url": "http://localhost:4200/",
           "webRoot": "${workspaceRoot}/",
           "profile":"Debug_user",
           "keepProfileChanges": true

Here please note the profile and keepProfileChanges.

you can either create a new profile just for debugging by going to about:profiles or use the one that's marked as the default the keepProfileChanges will make sure the passwords you save wont be erased after quitting Adding to it You'll need to set the rememberSignons: false once with you're new profile in debug mode and that's it

arshadpakkali avatar Mar 08 '23 12:03 arshadpakkali

Hi @Starli0n, I experienced the same discomfort and it seems to be by design ("keepProfileChanges" doesn't save the setting). What I did is at the following to my launch.json file: "preferences": { "signon.rememberSignons": true }

Btw, the same seems to apply to "Open links in tabs instead of new windows", which needs "browser.link.open_newwindow": 3.

Hope this helps!

Devvox93 avatar May 04 '23 10:05 Devvox93