搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

How do I disable the "Forget About This Site" warning?

  • 12 回覆
  • 1 有這個問題
  • 3 次檢視
  • 最近回覆由 David_H23

more options

The latest update added a new warning to the "Forget About This Site" feature. I use this sometimes, and when I saw this warning for the first time yesterday, I knew it was going to be a pain in the arse. I understand it's useful to some people, but I do not want to see it every time. How do I disable this warning?

The latest update added a new warning to the "Forget About This Site" feature. I use this sometimes, and when I saw this warning for the first time yesterday, I knew it was going to be a pain in the arse. I understand it's useful to some people, but I do not want to see it ''every time''. How do I disable this warning?
附加的畫面擷圖

由 David_H23 於 修改

所有回覆 (12)

more options

Too many users have used the 'Forget' option without knowing the full impact of using this feature. I don't think it should be changed.

Have you noticed that passwords would also be removed?

more options

That is not possible.

See also:

(please do not comment in bug reports
https://bugzilla.mozilla.org/page.cgi?id=etiquette.html
)

由 cor-el 於 修改

more options

FredMcD said

Too many users have used the 'Forget' option without knowing the full impact of using this feature. I don't think it should be changed. Have you noticed that passwords would also be removed?

I'm not asking for it to be removed - just for an option for me to personally disable it.

And yes, I have unintentionally removed saved passwords with Forget Site before. I do think there should be an option to disable Forget About This Site removing passwords.

more options

cor-el said

That is not possible. See also: (please do not comment in bug reports
https://bugzilla.mozilla.org/page.cgi?id=etiquette.html
)

I'm confused. Where does it say adding an option to disable the warning isn't possible?

more options

If you are using a Primary Password and make sure that you aren't logged in (i.e. the logins aren't unlocked) then you can cancel the PP prompt to prevent removing logins when you use "Forget About This Site". You can logout from Lockwise by canceling a PP prompt like you get when you click the eye icon in Lockwise to reveal a password.

由 cor-el 於 修改

more options

You can see in the code that this warning is always shown with no way to bypass.

    let bag = await Services.prompt.asyncConfirmEx(
      window.browsingContext,
      Services.prompt.MODAL_TYPE_INTERNAL_WINDOW,
      title,
      body,
      flags,
      null,
      forget,
      null,
      null,
      false
    );
    if (!(bag.getProperty("buttonNumClicked") === 1)) {
      return;
    }

more options

cor-el said

You can see in the code that this warning is always shown with no way to bypass.
    let bag = await Services.prompt.asyncConfirmEx(
      window.browsingContext,
      Services.prompt.MODAL_TYPE_INTERNAL_WINDOW,
      title,
      body,
      flags,
      null,
      forget,
      null,
      null,
      false
    );
    if (!(bag.getProperty("buttonNumClicked") === 1)) {
      return;
    }

Assuming I understand code, then that sucks. Is there any way to add a way to bypass the warning, or maybe some sort of extension that can disable the warning?

more options

cor-el said

If you are using a Primary Password and make sure that you aren't logged in (i.e. the logins aren't unlocked) then you can cancel the PP prompt to prevent removing logins when you use "Forget About This Site". You can logout from Lockwise by canceling a PP prompt like you get when you click the eye icon in Lockwise to reveal a password.

Elaborate, please. I don't really understand what this means.

more options

Only if you click the OK (Forget) button on this dialog then the forget action is done, so you would need some macro that clicks this button automatically once the dialog is shown.

more options

cor-el said

Only if you click the OK (Forget) button on this dialog then the forget action is done, so you would need some macro that clicks this button automatically once the dialog is shown.

How do I create said macro, or where do I find one/someone or something that can make it for me?

more options

How do I create said macro, or where do I find one/someone or something that can make it for me?

more options

Does anyone else have an answer?