LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   LinuxQuestions.org Member Success Stories (https://www.linuxquestions.org/questions/linuxquestions-org-member-success-stories-23/)
-   -   How to stop Firefox from telling Google where you are going (https://www.linuxquestions.org/questions/linuxquestions-org-member-success-stories-23/how-to-stop-firefox-from-telling-google-where-you-are-going-947808/)

lugoteehalt 05-31-2012 12:36 PM

How to stop Firefox from telling Google where you are going
 
As 'a courtesy' Firefox tells Google the site you paropose to visit, that way Google can check it for safety. We all trust Google implicitly, so there is nothing Orwellian about this.

Apparently the way to stop this is Edit -> Preferences -> Security tab -> then uncheck 'block reported attack sites', 'block reported web forgeries'.

(Apparently Mozilla gets most of its money from Google. Do not know if this is a good question but checking the web sites for us would seem to cost Google money - why would they pay Mozilla to do this if they did not have a sinister, ulterior motive?)

I use things like trafficlight, https://addons.mozilla.org/en-US/fir.../trafficlight/ , wonder if they cause the Google tracking type problem too.

craigevil 05-31-2012 01:16 PM

/* Disable geolocation */
user_pref("geo.enabled", false);

/* Disable Google lookups */
user_pref("browser.safebrowsing.enabled", false);
user_pref("browser.safebrowsing.malware.enabled", false);
user_pref("browser.safebrowsing.remoteLookups", false);


/* Disable network prefetching/search engine suggest */
user_pref("network.prefetch-next", false);
user_pref("browser.search.suggest.enabled", false);

You aren't being paranoid enough.
Security and Privacy on the Internet - LinuxQuestions.org : https://www.linuxquestions.org/quest...internet-3080/

lugoteehalt 05-31-2012 03:49 PM

Quote:

Originally Posted by craigevil (Post 4692220)
You aren't being paranoid enough.[/url]

I'm also not being intelligent enough. What should I do with the code?

craigevil 05-31-2012 04:02 PM

Rather than using about:config, create a file named user.js in your Firefox profile directory.

user.js overwrites pref.js.

User.js file - MozillaZine Knowledge Base - http://kb.mozillazine.org/User.js_file

lugoteehalt 05-31-2012 05:16 PM

Great thanks. Incidentally, slight typo, it should be not pref.js but prefs.js.


All times are GMT -5. The time now is 02:45 PM.