14 lines
610 B
Nix
14 lines
610 B
Nix
{
|
|
# Disable google safebrowsing
|
|
# Google safebrowsing can detect phishing and malware but it also sends
|
|
# informations to google together with an unique id called wrkey
|
|
# (http://electroholiker.de/?p=1594).
|
|
"browser.safebrowsing.enabled" = false;
|
|
"browser.safebrowsing.downloads.remote.url" = "";
|
|
"browser.safebrowsing.phishing.enabled" = false;
|
|
"browser.safebrowsing.blockedURIs.enabled" = false;
|
|
"browser.safebrowsing.downloads.enabled" = false;
|
|
"browser.safebrowsing.downloads.remote.enabled" = false;
|
|
"browser.safebrowsing.appRepURL" = "";
|
|
"browser.safebrowsing.malware.enabled" = false;
|
|
}
|