Beef up Firefox Privacy Features
![Dmitri Popov Dmitri Popov](/var/linux_magazin/storage/images/online/blogs/productivity-sauce/275404-17-eng-US/Productivity-Sauce.png)
Productivity Sauce
Whether you want it or not, your Web activities are tracked and analyzed in many different ways. But you don't have to put up with this, especially if you are using Firefox as your primary browser. There are a few handy Firefox extensions that can beef up your favorite browser's privacy features. Here are my three personal favorites.
Besides regular cookies planted in your browser by many Web sites, some services add so-called Flash cookies or Local Shared Objects (LSO). Similar to conventional cookies, LSOs collect and share information about your Web usage. But unlike good old cookies, LSOs are particularly difficult to purge from your browser. The aptly named BetterPrivacy extension provides a simple fix to that problem. This extension lets you nuke all nasty LSOs installed in your browser one by one, or you can configure it to delete them all in one fell swoop when you close the browser.
Cookies are the most common way to track your Web activities, but they are not the only ones. Tags, Web bugs, pixels, and beacons are all used to gather information about your Web habits. The Ghostery extension is designed to block these unwelcome guests. Once installed, it sits quietly in Firefox's status bar. When Ghostery detects suspicious elements, its icon turns blue, and you can view a list of discovered trackers by right-clicking on the icon. You can then use Ghostery to view more info about the particular tracking service and block it, if necessary.
Most Web sites and services that attempt to gather information about you are small fish compared to the mighty Google. Every time you perform a search or use a Google-based service, you hand the search giant a wealth of information about you. While it's virtually impossible to prevent that from happening, you can make Google's job of collecting data much harder using the GoogleSharing extension and proxy service. According to the project's Web site, the proxy server is designed to confuse Google by "generating a pool of GoogleSharing 'identities,' each of which contains a cookie issued by Google and an arbitrary User-Agent for one of several popular browsers." The Firefox extension redirects all requests for Google services from your browser to the proxy. The proxy then strips the requests of all identifying information and replace it with information from a GoogleSharing identity. By default, the extension uses the proxy server maintained by the GoogleSharing project, but you can also set up your own proxy by installing and running the googleshare server.
Comments
comments powered by DisqusSubscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
![Learn More](https://www.linux-magazine.com/var/linux_magazin/storage/images/media/linux-magazine-eng-us/images/misc/learn-more/834592-1-eng-US/Learn-More_medium.png)
News
-
openSUSE Tumbleweed Ditches AppArmor for SELinux
If you're an openSUSE Tumbleweed user, you can expect a major change to the distribution.
-
Plasma 6.3 Now Available
Plasma desktop v6.3 has a couple of pretty nifty tricks up its sleeve.
-
LibreOffice 25.2 Has Arrived
If you've been hoping for a release that offers more UI customizations, you're in for a treat.
-
TuxCare Has a Big AlmaLinux 9 Announcement in Store
TuxCare announced it has successfully completed a Security Technical Implementation Guide for AlmaLinux OS 9.
-
First Release Candidate for Linux Kernel 6.14 Now Available
Linus Torvalds has officially released the first release candidate for kernel 6.14 and it includes over 500,000 lines of modified code, making for a small release.
-
System76 Refreshes Meerkat Mini PC
If you're looking for a small form factor PC powered by Linux, System76 has exactly what you need in the Meerkat mini PC.
-
Gnome 48 Alpha Ready for Testing
The latest Gnome desktop alpha is now available with plenty of new features and improvements.
-
Wine 10 Includes Plenty to Excite Users
With its latest release, Wine has the usual crop of bug fixes and improvements, along with some exciting new features.
-
Linux Kernel 6.13 Offers Improvements for AMD/Apple Users
The latest Linux kernel is now available, and it includes plenty of improvements, especially for those who use AMD or Apple-based systems.
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
Dump the flash trash as son as it arrives
ln -s /dev/null ~/.macromedia
ln -s /dev/null ~/.adobe
Cleaning up
http://bleachbit.sourceforge.net/
firefox & flash history, cookies, etc.
function clean-firefox ()
# from a slashdot post, cleans up its databases, can take ~15 secs!
{
for i in ~/.mozilla/firefox/*.default/*.sqlite; do
sqlite3 $i "vacuum;" ;
done
}
alias cleanflash='rm -rf ~/.macromedia/Flash_Player/macromedia.com/support/flashplayer/sys/* ~/.macromedia/Flash_Player/#SharedObjects/*/*'