From fe854efa278adf474f4e5528ac04a566dfe2d19e Mon Sep 17 00:00:00 2001 From: dimon4ezzz <37621957+dimon4ezzz@users.noreply.github.com> Date: Thu, 4 Jun 2020 13:54:07 +0000 Subject: [PATCH] add https_only, started from Firefox 76 --- profiles/01_default.json | 1 + settings/https_only.json | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 settings/https_only.json diff --git a/profiles/01_default.json b/profiles/01_default.json index ee82298..2e417d8 100644 --- a/profiles/01_default.json +++ b/profiles/01_default.json @@ -62,6 +62,7 @@ "Security": [ "autoupdate.json", "extension_blocklist.json", + "https_only.json", "punycode.json" ], "Addons": [ diff --git a/settings/https_only.json b/settings/https_only.json new file mode 100644 index 0000000..5a665eb --- /dev/null +++ b/settings/https_only.json @@ -0,0 +1,13 @@ +[ + { + "name": "https_only", + "type": "boolean", + "initial": true, + "label": "Use only HTTPS on sites", + "help_text": "", + "addons": [], + "config": { + "dom.security.https_only_mode": true + } + } +]