Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

본 사이트는 여러분의 사용자 경험을 개선하기 위해 유지 보수를 진행하는 동안 기능이 제한됩니다. 도움말로 문제가 해결되지 않고 질문을 하고 싶다면 Twitter의 @FirefoxSupport 및 Reddit의 /r/firefox 채널을 활용하세요.

Mozilla 도움말 검색

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

자세히 살펴보기

How do you stop Firefox from automatically updating itself?

more options

How do you stop FF from automatically updating to the latest version? I need to keep FF at version v37, but it keeps updating to v39 no matter what I do. I have gone to options -> advanced -> updates and deselected automatic updates. I've also gone to about:config and changed app.update.auto to false.

But it is still updating. This is extremely frustrating because I have to keep uninstalling and re-installing but it keeps updating itself. Thanks in advance

How do you stop FF from automatically updating to the latest version? I need to keep FF at version v37, but it keeps updating to v39 no matter what I do. I have gone to options -> advanced -> updates and deselected automatic updates. I've also gone to about:config and changed app.update.auto to false. But it is still updating. This is extremely frustrating because I have to keep uninstalling and re-installing but it keeps updating itself. Thanks in advance

모든 댓글 (1)

more options

There is a way to disable updates by going through the Options menu but after disabling it through there, when you would go to Help > About Firefox, it would update regardless of that setting. 2 methods here, pick one. You can set these prefs in about:config to disable automatic updating: app.update.auto - false app.update.enabled - false app.update.silent - false Or you can use this method to do that for you: You can create a new file in a text editor (Defaults are: Notepad for Windows, TextEdit for Mac, and Text Editor on Linux) called user.js. When you save user.js, make sure it's file type is ALL FILES as leaving it like that will add the .txt extension (user.js.txt) and it won't work. Place this file in your Profile Folder. See the link below to learn how to access the folder

How to find my profile Folder Once you're creating the folder simply add the following to your user.js file, save and close, restart Firefox

// turn off application updates: user_pref("app.update.enabled", false);