Firefox to allow users to disable sending of search terms to ISPs #2
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Good afternoon:
According to the website attached. There is a bug in firefox that makes it send the searches to the dns of your operator. In it they indicate how to stop this sending. The web is:
https://techdows.com/2020/06/chrome-firefox-leak-search-terms-isps.html
Then there are these tickets for Mozilla:
user_pref("browser.startup.page", 0);
user_pref("browser.newtabpage.activity-stream.feeds.telemetry", false);
user_pref("browser.newtabpage.activity-stream.telemetry", false);
user_pref("browser.newtabpage.activity-stream.telemetry.ping.endpoint", "");
user_pref("browser.newtabpage.activity-stream.showSponsored", false);
user_pref("browser.newtabpage.activity-stream.feeds.discoverystreamfeed", false);
user_pref("browser.newtabpage.activity-stream.feeds.system.topsites", false);
user_pref("browser.urlbar.dnsResolveSingleWordsAfterSearch", 0);
A hug