問題:
Firefox瀏覽器,在瀏覽器的設置中已經設置了取消自動升級,實際退出Firefox瀏覽器重新啟動瀏覽器后還是會升級到最新版本。
影響:
Firefox瀏覽器不同的版本的插件的支持兼容不一樣,如果需要使用某款插件,需保證瀏覽器的版本保持固定。
解決:
1、瀏覽器設置,選項–>常規—>更新:設置為不允許檢查更新
2、如果通過上面步驟的設置,火狐瀏覽器還會自動升級的話,那么需要找到火狐瀏覽器的配置文件夾,修改配置文件:
Windows7下配置文件路徑為:
\Mozilla Firefox\defaults\pref1
如圖:
找到以上路徑下的channel-prefs.js文件,打開編輯如下:
在文件后面加上以下代碼:
找到以上路徑下的channel-prefs.js文件,打開編輯如下:
在文件后面加上以下代碼:
user_pref("app.update.migrated.updateDir", false);
user_pref("app.update.lastUpdateTime.browser-cleanup-thumbnails", 0);
user_pref("app.update.lastUpdateTime.datareporting-healthreport-lastDailyCollection", 0);
user_pref("app.update.disable_button.showUpdateHistory", false);
user_pref("app.update.service.enabled", false);
user_pref("browser.search.update", false);
user_pref("extensions.update.enabled", false);1234567
user_pref("app.update.lastUpdateTime.browser-cleanup-thumbnails", 0);
user_pref("app.update.lastUpdateTime.datareporting-healthreport-lastDailyCollection", 0);
user_pref("app.update.disable_button.showUpdateHistory", false);
user_pref("app.update.service.enabled", false);
user_pref("browser.search.update", false);
user_pref("extensions.update.enabled", false);1234567
如圖:

代碼添加成功后,保存並關閉。
這樣重新啟動Firefox瀏覽器時便不會再升級了,徹底禁止了火狐瀏覽器更新升級。
---------------------
作者:ElenaYu
來源:CSDN
原文:https://blog.csdn.net/yu1014745867/article/details/79639440