level 12
没升级,一直停留在56版本,因为某个插件必须用这个版本的火狐
结果今天用了一会儿就提示一些组件未通过验证,有解决的办法吗
隔三差五就来这么一出,好烦
2023年06月22日 06点06分
1
level 12
再补充,xpinstall.signatures.required已经改过了,好几年前就改过了,上次有用,这次没用
2023年06月22日 06点06分
3
level 13
完整版本是什么,改 xpinstall.signatures.required 对标准版无效
2023年06月22日 08点06分
5
准确说应该是 正式版 和 Beta 版,在 Firefox 48 后无法关闭扩展签名检查
2023年06月22日 09点06分
吧务
level 11
什么插件依赖这个版本?说出来我看看有没有见过替代品。升级浏览器是更新换代的趋势
2023年06月23日 07点06分
8
level 12
有两个功能找不到替换,一个是F2 F3切换前后标签页,当年是通过一个叫“SwiftTabs”的扩展达成的。现在根本找不到了。最早是从遨游浏览器养成的习惯,360等一众国产浏览器内置了这个功能,但国外原生浏览器都没这功能。
另一个是永久保存浏览历史功能,说是永久保存,但实际上只能保存三四年的,勉强够用。
找了一些资料,火狐是根据浏览条目数量保存历史的,在about:config设置中“places.history.expiration.transient_current_max_pages” 这个选项已经被移除了,改不了了
后者最重要,我一直保留旧版本火狐就是要看浏览历史,提醒我这个链接我有没有点进去过。
还有我刚才试着下载了新版火狐,旧的历史记录好像没办法导入到新版啊,是格式不兼容吗……
2023年06月23日 08点06分
9
level 11
//This file should be placed in the defaults/pref directory (folder)
//within the Firefox installation directory with the with the name:
//disable-add-on-signing-prefs.js
pref("xpinstall.signatures.required", false);
pref("general.config.obscure_value", 0);
pref("general.config.filename", "disable-add-on-signing.js");
2023年06月24日 04点06分
13
level 11
//This file should be placed in the Firefox installation directory 该文件应该放在Firefox安装目录中
//(folder) with the with the name:
//disable-add-on-signing.js
try {
Components.utils.import("resource://gre/modules/addons/XPIProvider.jsm", {})
.eval("SIGNED_TYPES.clear()");
} catch(ex) {}
try {
Components.utils.import("resource://gre/modules/addons/XPIInstall.jsm", {})
.eval("SIGNED_TYPES.clear()");
} catch(ex) {}
// 禁用检查firefox是否为默认浏览器
// Disable checking if firefox is default browser
lockPref('browser.shell.checkDefaultBrowser', false);
// 禁用恢复会话
// Disable restoring session
lockPref('browser.sessionstore.resume_from_crash', false);
// 禁用扩展签名检查
// Disable extension signature check
lockPref('xpinstall.signatures.required', false);
// 允许在没有用户提示的情况下安装扩展
// Allow extensions to be installed without user prompt
pref("extensions.autoDisableScopes", 0);
pref("extensions.enabledScopes", 15);
// 默认情况下使扩展自动更新为false
// Make extensions autoupdate false by Default
lockPref("extensions.update.autoUpdateDefault", false);
// 禁用更新程序
// Disable updater
lockPref("app.update.enabled", false);
// 绝对要确保它真的关闭了
// make absolutely sure it is really off
lockPref("app.update.auto", false);
lockPref("app.update.mode", 0);
lockPref("app.update.service.enabled", false);
// 阻止关闭对话框
// Prevent closing dialogs
lockPref("browser.showQuitWarning", false);
lockPref("browser.warnOnQuit", false);
lockPref("browser.tabs.warnOnClose", false);
lockPref("browser.tabs.warnOnCloseOtherTabs", false);
// 禁用扩展兼容性检查
// Disable Add-ons compatibility checking
clearPref("extensions.lastAppVersion");
// 首次启动时不显示“了解自己的权利”
// Don't show 'know your rights' on first run
pref("browser.rights.3.shown", true);
// 禁用插件检查
// Disable plugin checking
lockPref("plugins.hide_infobar_for_outdated_plugin", true);
clearPref("plugins.update.url");
// 禁用运行状况报告程序
// Disable health reporter
lockPref("datareporting.healthreport.service.enabled", false);
// 禁用所有数据上传(遥测和FHR)
// Disable all data upload (Telemetry and FHR)
lockPref("datareporting.policy.dataSubmissionEnabled", false);
// 禁用崩溃报告程序
// Disable crash reporter
lockPref("toolkit.crashreporter.enabled", false);
Components.classes["@mozilla.org/toolkit/crash-reporter;1"].getService(Components.interfaces.nsICrashReporter).submitReports = false;
// 自动(脚本触发)下载后禁用下载弹出窗口
// Disable download popup after automatic (script-triggered) downloads
lockPref("browser.download.panel.shown", true);
// 浏览器控制台命令行
// Browser Console command line
pref("devtools.chrome.enabled", true);
2023年06月24日 04点06分
14