не работает функция pref.privacy.disable_button.view_passwords
не работает функция pref.privacy.disable_button.view_passwords - false or true -функция не работает., подскажите что можно сделать? или это баг?
Chosen solution
sfhowes said
VictorB saidsfhowes saiddarehunter saidthe pref.privacy.disable_button.view_passwords function does not work - false or true - the function does not work., tell me what can be done? or is it a bugYou have to lock the preference.
I understand correctly? in order for the function to work, you must first close the advanced settings?
The process of locking preferences is fairly complex, and another reference is here.
Спасибо Вам, что натолкнули на мысль проверить кодировку файлов!
The mozilla.cfg file should be saved ANSI encoded.
Вот корректная статья, о том как скрыть кнопку отобразить пароли в Thunderbird.
Для этого надо создать два текстовых файла.
1. mozilla.cfg
Его надо положить в директорию, в которую установлен Thunderbird. Например, в "C:\Program Files (x86)\Mozilla Thunderbird".
Файл должен содержать текст:
// lockPref("pref.privacy.disable_button.view_passwords", true);
Первая строка должны содержать два слеша (//). Это не опечатка.
2. local-settings.js
Этот файл укажет, что надо подгрузить наши настройки в конфигурацию. Содержимое файла:
pref("general.config.obscure_value", 0); // only needed if you do not want to obscure the content with ROT-13 pref("general.config.filename", "mozilla.cfg");
Этот файл надо поместить в поддиректорию defaultspref (например, в "C:\Program Files (x86)\Mozilla\Thunderbird\defaults\pref").
Перезапустите Thunderbird.
Кнопка "сохраненые пароли"становится недоступной.
Главное соблюдать кодировку файлов ANSI
Read this answer in context 👍 0All Replies (5)
darehunter said
the pref.privacy.disable_button.view_passwords function does not work - false or true - the function does not work., tell me what can be done? or is it a bug
You have to lock the preference.
sfhowes said
darehunter saidthe pref.privacy.disable_button.view_passwords function does not work - false or true - the function does not work., tell me what can be done? or is it a bugYou have to lock the preference.
я правильно понимаю? для того чтобы работала функция , необходимо сначала закрыть расширенные настройки?
VictorB said
sfhowes saiddarehunter saidthe pref.privacy.disable_button.view_passwords function does not work - false or true - the function does not work., tell me what can be done? or is it a bugYou have to lock the preference.
I understand correctly? in order for the function to work, you must first close the advanced settings?
The process of locking preferences is fairly complex, and another reference is here.
Chosen Solution
sfhowes said
VictorB saidsfhowes saiddarehunter saidthe pref.privacy.disable_button.view_passwords function does not work - false or true - the function does not work., tell me what can be done? or is it a bugYou have to lock the preference.
I understand correctly? in order for the function to work, you must first close the advanced settings?
The process of locking preferences is fairly complex, and another reference is here.
Спасибо Вам, что натолкнули на мысль проверить кодировку файлов!
The mozilla.cfg file should be saved ANSI encoded.
Вот корректная статья, о том как скрыть кнопку отобразить пароли в Thunderbird.
Для этого надо создать два текстовых файла.
1. mozilla.cfg
Его надо положить в директорию, в которую установлен Thunderbird. Например, в "C:\Program Files (x86)\Mozilla Thunderbird".
Файл должен содержать текст:
// lockPref("pref.privacy.disable_button.view_passwords", true);
Первая строка должны содержать два слеша (//). Это не опечатка.
2. local-settings.js
Этот файл укажет, что надо подгрузить наши настройки в конфигурацию. Содержимое файла:
pref("general.config.obscure_value", 0); // only needed if you do not want to obscure the content with ROT-13 pref("general.config.filename", "mozilla.cfg");
Этот файл надо поместить в поддиректорию defaultspref (например, в "C:\Program Files (x86)\Mozilla\Thunderbird\defaults\pref").
Перезапустите Thunderbird.
Кнопка "сохраненые пароли"становится недоступной.
Главное соблюдать кодировку файлов ANSI
Google translated: VictorB said
Thank you for the idea of checking the encoding of files! The mozilla.cfg file should be saved ANSI encoded. Here is the correct article on how to hide the display passwords button in Thunderbird. To do this, create two text files. 1. mozilla.cfg It must be put in the directory in which Thunderbird is installed. For example, in "C: \ Program Files (x86) \ Mozilla Thunderbird". The file should contain the text: // lockPref ("pref.privacy.disable_button.view_passwords", true); The first line should contain two slashes (//). This is not a typo. 2.local-settings.js This file will indicate that we need to load our settings into the configuration. File contents: pref ("general.config.obscure_value", 0); // only needed if you do not want to obscure the content with ROT-13 pref ("general.config.filename", "mozilla.cfg"); This file must be placed in the defaults pref subdirectory (for example, in "C: \ Program Files (x86) \ Mozilla \ Thunderbird \ defaults \ pref"). Restart Thunderbird. The "saved passwords" button becomes unavailable. The main thing to observe the encoding of ANSI files ССылка на автора статьи