mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2025-08-19 12:47:27 +02:00
Compare commits
No commits in common. "13fa6d00b72ee2addadfd19c39d6d284a4d75c90" and "43225ab936db7f4f8510363de4d5ed101c5137e5" have entirely different histories.
13fa6d00b7
...
43225ab936
@ -75,8 +75,5 @@ lockPref("security.ssl.enable_ocsp_must_staple", true);
|
|||||||
// ECH, which is otherwise the default=
|
// ECH, which is otherwise the default=
|
||||||
lockPref("security.tls.ech.grease_http3", true);
|
lockPref("security.tls.ech.grease_http3", true);
|
||||||
|
|
||||||
// New sidebar
|
|
||||||
lockPref("sidebar.revamp", true);
|
|
||||||
|
|
||||||
// No making configuration on the last line of the file!
|
// No making configuration on the last line of the file!
|
||||||
//
|
//
|
||||||
|
@ -72,15 +72,7 @@
|
|||||||
"adguard-cookies",
|
"adguard-cookies",
|
||||||
"ublock-cookies-adguard",
|
"ublock-cookies-adguard",
|
||||||
"ublock-quick-fixes",
|
"ublock-quick-fixes",
|
||||||
"https://raw.githubusercontent.com/DandelionSprout/adfilt/master/LegitimateURLShortener.txt",
|
"https://raw.githubusercontent.com/DandelionSprout/adfilt/master/LegitimateURLShortener.txt"
|
||||||
"https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/MiniLists/cpbl-abp-mini.txt",
|
|
||||||
"https://raw.githubusercontent.com/tiuxo/hosts/master/ads",
|
|
||||||
"https://badmojr.gitlab.io/1hosts/Lite/adblock.txt",
|
|
||||||
"https://raw.githubusercontent.com/jjjxu/NSO_Pegasus_Blocklist/master/Pegasus-Hosts-Formatted.txt",
|
|
||||||
"https://dl.red.flag.domains/adguard/red.flag.domains.txt",
|
|
||||||
"https://raw.githubusercontent.com/olbat/ut1-blacklists/master/blacklists/malware/domains",
|
|
||||||
"https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts",
|
|
||||||
"curben-phishing"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -179,7 +171,7 @@
|
|||||||
},
|
},
|
||||||
"{3c078156-979c-498b-8990-85f7987dd929}": {
|
"{3c078156-979c-498b-8990-85f7987dd929}": {
|
||||||
"install_url": "https://addons.mozilla.org/firefox/downloads/latest/sidebery/latest.xpi",
|
"install_url": "https://addons.mozilla.org/firefox/downloads/latest/sidebery/latest.xpi",
|
||||||
"installation_mode": "default_installed"
|
"installation_mode": "force_installed"
|
||||||
},
|
},
|
||||||
"{446900e4-71c2-419f-a6a7-df9c091e268b}": {
|
"{446900e4-71c2-419f-a6a7-df9c091e268b}": {
|
||||||
"install_url": "https://addons.mozilla.org/firefox/downloads/latest/bitwarden-password-manager/latest.xpi",
|
"install_url": "https://addons.mozilla.org/firefox/downloads/latest/bitwarden-password-manager/latest.xpi",
|
||||||
@ -380,16 +372,6 @@
|
|||||||
"Type": "string",
|
"Type": "string",
|
||||||
"Value": "en, fi"
|
"Value": "en, fi"
|
||||||
},
|
},
|
||||||
"browser.urlbar.trimHttps": {
|
|
||||||
"Status": "locked",
|
|
||||||
"Type": "boolean",
|
|
||||||
"Value": false
|
|
||||||
},
|
|
||||||
"browser.urlbar.trimURL": {
|
|
||||||
"Status": "locked",
|
|
||||||
"Type": "boolean",
|
|
||||||
"Value": false
|
|
||||||
},
|
|
||||||
"cookiebanners.bannerClicking.enabled": {
|
"cookiebanners.bannerClicking.enabled": {
|
||||||
"Comment": "Preference not allowed for stability reasons. :(",
|
"Comment": "Preference not allowed for stability reasons. :(",
|
||||||
"Status": "locked",
|
"Status": "locked",
|
||||||
@ -747,12 +729,6 @@
|
|||||||
"Type": "boolean",
|
"Type": "boolean",
|
||||||
"Value": true
|
"Value": true
|
||||||
},
|
},
|
||||||
"sidebar.revamp": {
|
|
||||||
"Comment": "Preference not allowed for stability reasons.",
|
|
||||||
"Status": "default",
|
|
||||||
"Type": "boolean",
|
|
||||||
"Value": true
|
|
||||||
},
|
|
||||||
"ui.systemUsesDarkTheme": {
|
"ui.systemUsesDarkTheme": {
|
||||||
"Comment": "Another defaulting to dark theme.",
|
"Comment": "Another defaulting to dark theme.",
|
||||||
"Status": "default",
|
"Status": "default",
|
||||||
|
@ -34,21 +34,17 @@ chmod -v a+rx /etc/opt/chromium/policies/
|
|||||||
chmod -v a+rx /etc/opt/chromium/policies/{managed,recommended}/
|
chmod -v a+rx /etc/opt/chromium/policies/{managed,recommended}/
|
||||||
|
|
||||||
# Brave
|
# Brave
|
||||||
mkdir -p /etc/brave
|
ln -fnsv /etc/opt/chromium /etc/brave
|
||||||
ln -fnsv /etc/opt/chromium/policies /etc/brave/policies
|
|
||||||
|
|
||||||
# Vivaldi
|
# Vivaldi
|
||||||
mkdir -p /etc/chromium
|
ln -fnsv /etc/opt/chromium /etc/chromium
|
||||||
ln -fnsv /etc/opt/chromium/policies /etc/chromium/policies
|
|
||||||
|
|
||||||
# Google Chrome
|
# Google Chrome
|
||||||
mkdir -p /etc/opt/chrome
|
ln -fnsv /etc/opt/chromium /etc/opt/chrome
|
||||||
ln -fnsv /etc/opt/chromium/policies /etc/opt/chrome/policies
|
|
||||||
|
|
||||||
# Microsoft Edge
|
# Microsoft Edge
|
||||||
# I used to have a separate policy for it so remember to remove this manually
|
# I used to have a separate policy for it so remember to remove this manually
|
||||||
# if it exists!
|
# if it exists!
|
||||||
mkdir -p /etc/opt/edge
|
ln -fnsv /etc/opt/chromium /etc/opt/edge
|
||||||
ln -fnsv /etc/opt/chromium/policies /etc/opt/edge/policies
|
|
||||||
|
|
||||||
set +x
|
set +x
|
||||||
|
@ -43,15 +43,7 @@
|
|||||||
"adguard-cookies",
|
"adguard-cookies",
|
||||||
"ublock-cookies-adguard",
|
"ublock-cookies-adguard",
|
||||||
"ublock-quick-fixes",
|
"ublock-quick-fixes",
|
||||||
"https://raw.githubusercontent.com/DandelionSprout/adfilt/master/LegitimateURLShortener.txt",
|
"https://raw.githubusercontent.com/DandelionSprout/adfilt/master/LegitimateURLShortener.txt"
|
||||||
"https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/MiniLists/cpbl-abp-mini.txt",
|
|
||||||
"https://raw.githubusercontent.com/tiuxo/hosts/master/ads",
|
|
||||||
"https://badmojr.gitlab.io/1hosts/Lite/adblock.txt",
|
|
||||||
"https://raw.githubusercontent.com/jjjxu/NSO_Pegasus_Blocklist/master/Pegasus-Hosts-Formatted.txt",
|
|
||||||
"https://dl.red.flag.domains/adguard/red.flag.domains.txt",
|
|
||||||
"https://raw.githubusercontent.com/olbat/ut1-blacklists/master/blacklists/malware/domains",
|
|
||||||
"https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts",
|
|
||||||
"curben-phishing"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user