Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

How to reduce prompting for "Master password"

  • 5 답장
  • 2 이 문제를 만남
  • 3 보기
  • 최종 답변자: cor-el

more options

I hope there may be a setting to address this issue...

I have a number of passwords saved for various non critical web sites such as this forum. Recently I set a "master password" to protect my saved passwords. Whenever I open a page which has text boxes for credentials which I have saved I am prompted for the master password regardless of whether I wish to authenticate to the site or not. I would like to configure Firefox to only open the saved passwords repository (for want of a batter word) when I choose to authenticate to a site.

Is this possible?

TIA,

Ken

p.s. I close Firefox (to flush cookies etc.) OFTEN so simply unlocking the saved passwords once a day and leaving Firefox running is not an answer.

I hope there may be a setting to address this issue... I have a number of passwords saved for various non critical web sites such as this forum. Recently I set a "master password" to protect my saved passwords. Whenever I open a page which has text boxes for credentials which I have saved I am prompted for the master password regardless of whether I wish to authenticate to the site or not. I would like to configure Firefox to only open the saved passwords repository (for want of a batter word) when I choose to authenticate to a site. Is this possible? TIA, Ken p.s. I close Firefox (to flush cookies etc.) OFTEN so simply unlocking the saved passwords once a day and leaving Firefox running is not an answer.

선택된 해결법

You can only do that by disabling the Password Manager temporarily and only enable it when you need it.

  • Edit > Preferences > Security: Passwords: "Remember passwords for sites"

On Linux you can leave the Preferences window open to achieve that more easily

I usually keep remember passwords disabled and have a button on the PrefBar toolbar that I use to quickly turn it on/off (signon.rememberSignons).

문맥에 따라 이 답변을 읽어주세요 👍 1

모든 댓글 (5)

more options

선택된 해결법

You can only do that by disabling the Password Manager temporarily and only enable it when you need it.

  • Edit > Preferences > Security: Passwords: "Remember passwords for sites"

On Linux you can leave the Preferences window open to achieve that more easily

I usually keep remember passwords disabled and have a button on the PrefBar toolbar that I use to quickly turn it on/off (signon.rememberSignons).

more options

Thanks cor-el. That may do the trick. I am playing with prefbar. I am guessing that the button to toggle signon.rememberSignons is a custom button. Would you be willing to share the code behind it?

Thanks again,

Ken

more options

Open the PrefBar Customize window via the right-click context menu of the PrefBar.
Create a new pref check via the right-click context menu of the right pane: New > Pref Check

Enter an ID (e.g. chk_rememberSignons) and a label that appears on the PrefBar and put in the Prefstring field signon.rememberSignons to specify which pref is affected.
Put value in the toPref and fromPref fields, that will toggle the pref between true and false and show a check-mark with the true value.

You can assign a hotkey to that pref if you want to toggle the pref with the keyboard.
That still works if you want to hide the PrefBar with F8 to get more screen space.

I color the check boxes with code in userChrome.css to make it easier to spot that I've changed some of them

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#prefbar-buttons checkbox[id="prefbar:button:chk_rememberSignons"] .checkbox-check[checked="true"]
{ -moz-box-shadow: 0pt 0pt 5px rgba(153,255,51,0.8) inset, 0pt 0pt 20px rgba(153,255,51,0.8) inset !important; }

글쓴이 cor-el 수정일시

more options

THANK YOU cor-el. Add another solution to your tally. This works GREAT!

Ken