Monthly Archives: January 2025

Securing Your Online Privacy: A Firefox Setup Guide

Chrome’s transition to Manifest V3 has significantly impacted content-blocking extensions, limiting their effectiveness in protecting user privacy. While uBlock Origin remains available on Chrome, its functionality may be restricted due to these API changes. This has led many privacy-conscious users to consider alternative browsers.

Firefox continues to support powerful content-blocking capabilities through its extended API support, making it an excellent choice for privacy-focused users. To help streamline the transition, I’ve developed a PowerShell script that automates the setup of a privacy-hardened Firefox profile.

Key features of this setup include:

  • Automated installation of essential privacy extensions
  • Optimized Firefox settings for enhanced security
  • Custom configurations to prevent tracking and fingerprinting
  • Easy deployment across multiple machines

You can find the script here: [GitHub repository link]

The script is open-source and customizable to match your specific privacy requirements. I encourage you to review the code and adjust the settings based on your needs.

For those interested in understanding the technical details, you can review the implementation on GitHub. Your feedback and contributions are welcome!

Stay secure!

Using PowerShell Modules from custom locations

Sometimes, work environments restrict PowerShell module installation in standard locations, even for the current user. In these cases, you may need to use modules from a custom folder.

However, Import-Module can’t detect modules outside standard locations. To solve this, I’ve created a function that adds a custom folder to the PSModulePath. This allows PowerShell to find and load modules from additional locations dynamically.

You can use this in your $PROFILE.

Happy importing!