user.js
[mw_shl_code=shell,true]# Mozilla User Preferences
/* Do not edit this file.
*
* If you make changes to this file while the application is running,
* the changes will be overwritten when the application exits.
*
* To make a manual change to preferences, you can visit the URL about:config
*/
//关闭增强标签
user_pref("browser.newtabpage.enhanced", false);
//safe 关闭安全检测健康中心类
user_pref("browser.safebrowsing.malware.enabled", false);
user_pref("browser.safebrowsing.enabled", false);
user_pref("datareporting.healthreport.logging.consoleEnabled", false);
user_pref("datareporting.healthreport.pendingDeleteRemoteData", true);
user_pref("datareporting.healthreport.service.enabled", false);
user_pref("datareporting.healthreport.service.firstRun", true);
user_pref("datareporting.healthreport.uploadEnabled", false);
user_pref("datareporting.policy.dataSubmissionEnabled", false);
//关闭Firefox Hello通讯功能
user_pref("loop.enabled", false);
//关闭Firefox Pocket服务
user_pref("browser.pocket.enabled", false);
//关闭Firefox 阅读功能
user_pref("reader.parse-on-load.enabled", false);
//关闭Firefox 扩展签名认证
user_pref("xpinstall.signatures.required", false);
[/mw_shl_code] |