Подскажите, как скрыть кнопку сохранённые пароли в Настройки-Защита в Firefox 38. Раньше помогало прописывание в userChrome.css кода:

button[oncommand="gSecurityPane.showPasswords();"]
    {display: none !important;}

или

#securityPrefs [label="Сохранённые пароли..."] {
  display: none !important;
}

pochta-kst

скрытый текст

Выделить код

Код:

@-moz-document url-prefix("about:preferences") {
button[preference*="view_passwords"] {
  display: none!important;
}
}

- в userContent.css
+

Выделить код

Код:

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
button[oncommand*="viewPasswords"],button[oncommand*="showPasswords"] {
  display: none!important;
}

- в userChrome.css

Но, хочу заметить, это весьма сомнительная защита. Мастер-пароль на что?

Спасибо, помогло. Для моего домашнего контингента этого хватает.