PortableBrowser.Launcher 1.0.0

dotnet add package PortableBrowser.Launcher --version 1.0.0
                    
NuGet\Install-Package PortableBrowser.Launcher -Version 1.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PortableBrowser.Launcher" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PortableBrowser.Launcher" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="PortableBrowser.Launcher" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add PortableBrowser.Launcher --version 1.0.0
                    
#r "nuget: PortableBrowser.Launcher, 1.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package PortableBrowser.Launcher@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=PortableBrowser.Launcher&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=PortableBrowser.Launcher&version=1.0.0
                    
Install as a Cake Tool

PortableBrowser.Launcher

A lightweight, zero-dependency C# library that automates downloading, extracting, and launching a portable Chromium-based web browser (Helium Browser) on Windows with 100% Zero-Trace Stealth Mode.

It requires no preinstalled browser on the host machine and leaves absolutely zero footprint (no binaries, zip files, history, cookies, or cache) upon exit.


🚀 Features

  • True Zero-Trace Stealth Mode: Generates an isolated temporary workspace on every launch, automatically clearing the downloaded .zip, extracted binaries, and user profile traces (cookies, cache, local storage, history) when the browser window is closed.
  • Incognito & Anti-Telemetry: Launches with Chromium security flags configured to block tracking, default checks, and telemetry by default.
  • Automatic CPU Architecture Detection: Seamlessly detects and pulls the correct architecture binary (x64 or arm64) for the host machine.
  • Multi-Framework Native Support: Native targets from legacy enterprise to modern platforms:
    • .NET Framework 4.8 & 4.8.1
    • .NET Standard 2.0 & 2.1
    • .NET Core 6.0, 7.0, 8.0, & 9.0
  • Progress Tracking: Exposes a reactive progress reporter (IProgress<double>) to easily display download progress to your users.
  • Robust Process Supervision: Actively monitors the process tree, cleans up orphaned sub-processes, and utilizes an exponential backoff folder eraser to handle closing OS file locks safely.

📦 Installation

Install the package via the NuGet Package Manager Console:

Install-Package PortableBrowser.Launcher

Or via the .NET CLI:

dotnet add package PortableBrowser.Launcher

💻 Quick Start

1. Minimal Zero-Trace Stealth Launch

To launch the browser pointing to a URL with full auto-cleanup on close, simply call:

using PortableBrowser.Launcher;

// Downloads, extracts, launches in incognito, and completely wipes all files on close!
await HeliumLauncher.LaunchAsync("https://example.com");

2. Advanced Usage with Download Progress and Custom Arguments

using System;
using PortableBrowser.Launcher;

// 1. Setup options
var options = new LauncherOptions
{
    StealthMode = true, // Enables full auto-deletion of zip + binaries + cookies + cache on close
    Incognito = true,   // Launches in incognito window
    
    // Wire up download progress indicator
    DownloadProgress = new Progress<double>(percent =>
    {
        Console.Write($"\rDownloading browser: {percent:P0} ");
    })
};

// Add custom chromium command line arguments if desired
options.CustomArguments.Add("--mute-audio");

// 2. Launch
Console.WriteLine("Launching secure session...");
var process = await HeliumLauncher.LaunchAsync("https://example.com", options);

// 3. Wait for exit (optional)
process.WaitForExit();
Console.WriteLine("\nBrowser closed and all traces successfully erased!");

📄 License

This library is released under the MIT License.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 is compatible.  net481 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.8

    • No dependencies.
  • .NETFramework 4.8.1

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.
  • .NETStandard 2.1

    • No dependencies.
  • net6.0

    • No dependencies.
  • net7.0

    • No dependencies.
  • net8.0

    • No dependencies.
  • net9.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 105 5/21/2026