Firefox:如何允许记住非安全页面上的媒体查询设置?

Firefox:如何允许记住非安全页面上的媒体查询设置?

下面的图片几乎说明了一切,但我添加了这段文字,以便于搜索。“记住这个决定”不起作用。

答复是“您与该站点的连接不安全...”

您与该站点的连接不安全。

有什么方法可以禁用此功能?我正尝试在个人服务器上进行一些开发,但必须一遍又一遍地验证是否要使用麦克风,这实在是太麻烦了。about:config 中有什么东西吗?

答案1

如果不更改 Firefox 的代码,则无法禁用此保护。
控制此保护的代码:

// Disable the permanent 'Allow' action if the connection isn't secure, or for
// screen/audio sharing (because we can't guess which window the user wants to
// share without prompting).
let reasonForNoPermanentAllow = "";
if (sharingScreen) {
  reasonForNoPermanentAllow = "getUserMedia.reasonForNoPermanentAllow.screen3";
} else if (sharingAudio) {
  reasonForNoPermanentAllow = "getUserMedia.reasonForNoPermanentAllow.audio";
} else if (!aRequest.secure) {
  reasonForNoPermanentAllow = "getUserMedia.reasonForNoPermanentAllow.insecure";
}

源代码链接

相关内容