Mozilla 도움말 검색

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

자세히 살펴보기

clear all history with user_pref

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

more options

Hello,

At work we use Firefox with an different profile configured for an internal need. there is this user.js file:

user_pref("startup.homepage_override_url", "http://10.0.1.26:8888"); user_pref("startup.homepage_welcome_url", "http://10.0.1.26:8888"); user_pref("javascript.enabled", true); user_pref("app.update.enabled", false); user_pref("browser.startup.homepage", "http://10.0.1.26:8888"); user_pref("accessibility.browsewithcaret", false); user_pref("browser.cache.disk.enable", false); user_pref("browser.popups.showPopupBlocker", false); user_pref("browser.cache.memory.enable", false); user_pref("browser.shell.checkDefaultBrowser", false); user_pref("browser.backspace_action", 2); user_pref("privacy.popups.disable_from_plugins", 0); user_pref("privacy.sanitize.sanitizeOnShutdown", true); user_pref("update_notifications.enabled", false); user_pref("browser.tabs.showSingleWindowModePrefs", true); user_pref("accessibility.browsewithcaret_shortcut.enabled", false); user_pref("plugins.hide_infobar_for_outdated_plugin", true); user_pref("extensions.blocklist.enabled", false); user_pref("browser.newtabpage.enabled", false); user_pref("browser.newtab.url", "http://10.0.1.26:8888"); user_pref("browser.tabs.autoHide", false); user_pref("zoom.minPercent", 100); user_pref("zoom.maxPercent", 100);

In some cases, (some) users are asked to save the password, and if they save it they don't need to re-fill the field despite there is:

user_pref("privacy.sanitize.sanitizeOnShutdown", true);

in user.js

does someone have an idea? And is there any other way to avoid password saving or enforce clearing passwords.

Thanks

Sam

Hello, At work we use Firefox with an different profile configured for an internal need. there is this user.js file: user_pref("startup.homepage_override_url", "http://10.0.1.26:8888"); user_pref("startup.homepage_welcome_url", "http://10.0.1.26:8888"); user_pref("javascript.enabled", true); user_pref("app.update.enabled", false); user_pref("browser.startup.homepage", "http://10.0.1.26:8888"); user_pref("accessibility.browsewithcaret", false); user_pref("browser.cache.disk.enable", false); user_pref("browser.popups.showPopupBlocker", false); user_pref("browser.cache.memory.enable", false); user_pref("browser.shell.checkDefaultBrowser", false); user_pref("browser.backspace_action", 2); user_pref("privacy.popups.disable_from_plugins", 0); user_pref("privacy.sanitize.sanitizeOnShutdown", true); user_pref("update_notifications.enabled", false); user_pref("browser.tabs.showSingleWindowModePrefs", true); user_pref("accessibility.browsewithcaret_shortcut.enabled", false); user_pref("plugins.hide_infobar_for_outdated_plugin", true); user_pref("extensions.blocklist.enabled", false); user_pref("browser.newtabpage.enabled", false); user_pref("browser.newtab.url", "http://10.0.1.26:8888"); user_pref("browser.tabs.autoHide", false); user_pref("zoom.minPercent", 100); user_pref("zoom.maxPercent", 100); In some cases, (some) users are asked to save the password, and if they save it they don't need to re-fill the field despite there is: user_pref("privacy.sanitize.sanitizeOnShutdown", true); in user.js does someone have an idea? And is there any other way to avoid password saving or enforce clearing passwords. Thanks Sam

글쓴이 NiteSupport 수정일시

모든 댓글 (4)

more options

Hello,

use also the next and check it again :

  • user_pref("privacy.item.passwords", true);


thank you

more options

Why would you want to disable the memory cache?

user_pref("browser.cache.memory.enable", false);

You would have to set this pref ot remove stored passwords:

  • user_pref('privacy.clearOnShutdown.passwords", true);

Note that details like websites remembering you (log you in automatically) are stored in a cookie. So you would have to clear cookies or let cookies expire when you close Firefox to prevent this from happening.

글쓴이 cor-el 수정일시

more options

Hello,

Thanks a lot, it works fine.

@cor-el, I don't know why the cache memory is disable, the "app" why configured for us by an external company for different purpose, both internet and intranet. So i don't want to touch this. The password in all cases doesn't have to be saved.

Thanks Sam

more options

It would make more sense to disable the disk cache than the memory cache if you compare that with clearing possible stored passwords (prevent Firefox from storing personal data) unless you want to force Firefox to store all data in the disk cache by disabling the memory cache.

Note that Firefox will disable the disk cache if you use "Clear history when Firefox closes" to clear the Cache (see the about:cache page)