搜尋 Mozilla 技術支援網站

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

Learn More

Hide Copy password dialog

  • 2 回覆
  • 11 有這個問題
  • 7 次檢視
  • 最近回覆由 gmacio

more options

Hello!

I have a question: How can I hide Copy password dialog (right click on saved item) from FireFox Settings\Security\Password Manager window. Can I do it in userChrome.css?

Thanks gmacio

p.s.: Sorry for my english

Hello! I have a question: How can I hide Copy password dialog (right click on saved item) from FireFox Settings\Security\Password Manager window. Can I do it in userChrome.css? Thanks gmacio p.s.: Sorry for my english

被選擇的解決方法

The two entries in the right-click context menu have these ids:

#context-copyusername
#context-copypassword

So it shouldn't be difficult to remove them with code in userChrome.css

#context-copypassword { display:none!important; }

Note this if you aren't using a Master Password then this won't really help. If you do use a Master Password then accessing the passwords would still be possible once you have logged on to the software security device (i.e. you have entered the MP when prompted). That Firefox asks to enter the MP another time is only to make it more difficult, but is not actually required.

You can cancel a MP prompt to get you logged off and block access to the names and passwords.

從原來的回覆中察看解決方案 👍 3

所有回覆 (2)

more options

選擇的解決方法

The two entries in the right-click context menu have these ids:

#context-copyusername
#context-copypassword

So it shouldn't be difficult to remove them with code in userChrome.css

#context-copypassword { display:none!important; }

Note this if you aren't using a Master Password then this won't really help. If you do use a Master Password then accessing the passwords would still be possible once you have logged on to the software security device (i.e. you have entered the MP when prompted). That Firefox asks to enter the MP another time is only to make it more difficult, but is not actually required.

You can cancel a MP prompt to get you logged off and block access to the names and passwords.

more options

That's it! Thank you!

G