A custom LibreWolf distribution for Windows with optimized defaults, pre-installed extensions, and portable packaging.
WolfPack takes the official LibreWolf portable build and repackages it with:
- Google as default search engine (with suggestions enabled)
- DRM enabled out of the box (Netflix, Disney+, Spotify work immediately)
- Pre-installed extensions via enterprise policies
- Optimized performance defaults (disk cache, prefetching, GPU acceleration)
- Session persistence (cookies and logins survive restarts)
- Password manager and autofill enabled by default
- Resist Fingerprinting (RFP) disabled to prevent site breakage
- Dark theme with custom CSS support
- Portable mode with local profile storage
All telemetry, Mozilla promotions, Pocket, Firefox Sync, safe browsing, and other bloat remains disabled from upstream LibreWolf.
| File | Description |
|---|---|
WolfPack-<version>-setup.exe | Windows installer (Start Menu + Desktop shortcuts, Add/Remove Programs) |
WolfPack-<version>-portable.zip | Portable zip (extract anywhere and run WolfPack.exe) |
WolfPack-<version>.msix | MSIX package for enterprise deployment (requires signing before end-user installation) |
Download from the Releases page.
| Extension | Source |
|---|---|
| uBlock Origin (MV2) | Verified AMO package; the uBlockVanced CRX is retained as an audited fallback candidate |
| Dark Reader (MV2) | Verified AMO package while the DarkReaderLocal fork is unavailable |
| ScriptVault | Custom userscript manager |
| StyleKit | Custom userstyle manager |
| SponsorBlock | Skip YouTube sponsors |
| Reddit Enhancement Suite | Reddit improvements |
| Adaptive Tab Bar Colour | Tab bar matches page color |
Extensions are installed automatically on first launch via policies.json.
The extracted package also contains admin-templates/WolfPack.admx and the matching
en-US/WolfPack.adml. Copy them to the domain Central Store (or the local
%WINDIR%\PolicyDefinitions directory) to expose WolfPack settings in Group Policy.
The templates write the standard Firefox policy registry path,
Software\Policies\Mozilla\Firefox, so they can be used with managed or portable
WolfPack deployments without rebuilding the package.
- DRM / Encrypted Media Extensions (streaming services)
- Disk cache (performance)
- Search suggestions in URL bar
- DNS prefetching and speculative connections
- Password manager and form autofill
- Session persistence (cookies kept on shutdown)
- Weather widget on new tab page
- Resist Fingerprinting (RFP) - causes timezone, canvas, and font issues
- Global Privacy Control (GPC)
- Sanitize on shutdown (users were getting logged out)
- Always-ask download location
Google is the default. Also available: DuckDuckGo, DuckDuckGo Lite, SearXNG, StartPage.
- Windows 10/11
- PowerShell 5.1+
- NSIS (for installer builds)
- Windows 10/11 SDK (for MSIX builds)
- .NET Framework 4.x (for launcher compilation)
# Build everything (downloads latest LibreWolf automatically)
.\build-portable.ps1# Build the beta channel (requires an upstream beta artifact/version)
.\build-portable.ps1-Channel beta
# Build specific version
.\build-portable.ps1-Version "146.0.1-1"# Portable zip only (skip installer)
.\build-portable.ps1-PortableOnly
# Rebuild without re-downloading
.\build-portable.ps1-SkipDownload
# Audit configured extension packages and fallback candidates online
.\scripts\Audit-WolfPackExtensions.ps1 -Online -Strictoutput/WolfPack-<version>-portable.zipoutput/WolfPack-<version>-setup.exeoutput/WolfPack-<version>.msix
The build verifies the downloaded LibreWolf archive against librewolf.lock. CI builds fail when the version or SHA-256 hash differs; intentional local experiments can use -AllowUnpinned.
The extension audit reads each package's manifest.json, verifies its Firefox ID and
Manifest Version, and rejects Chromium-only CRX artifacts before a fallback is promoted
to wolfpack.cfg.
WolfPack/
assets/ # Icon and logo files
launcher/ # C# portable launcher source
patches/ # Upstream LibreWolf patches
themes/ # Upstream LibreWolf branding/themes
scripts/ # Upstream LibreWolf build scripts
l10n/ # Localization files
.github/workflows/ # CI/CD build pipeline
build-portable.ps1 # Main build script
installer.nsi # NSIS installer script
policies.json # Enterprise policies (extensions, search engines)
user.js # Browser preferences
- Downloads the latest official LibreWolf portable zip from GitLab
- Patches
librewolf.cfgto fix common complaints (DRM, cache, RFP, etc.) - Injects custom
policies.jsonfor extension auto-install and Google default - Injects
user.jswith optimized preferences into the portable profile - Copies the GPO/ADMX templates into
admin-templates/ - Compiles a lightweight C# launcher (
WolfPack.exe, ~5KB) - Packages as portable zip and NSIS installer
LibreWolf is licensed under the Mozilla Public License 2.0. This repackaging project adds configuration and build tooling only.
