SLBr is an open-source, lightweight web browser based on Chromium. Built with .NET, WPF, and CefSharp (CEF) to provide a modern browsing experience while remaining lightweight.
CefSharp is a .NET wrapper for the Chromium Embedded Framework (CEF), providing an embedded Chromium browser for WPF and WinForms applications. It supports modern web standards, including HTML5, JavaScript, CSS3, WebGL, and HTML5 audio/video.
See the full feature list, here
- Clean, Modern UI: Simple & refreshed design.
- Ad & Tracker Blocking: Browse with fewer ads & less tracking.
- YouTube Ad Skip: Automatically skips ads on YouTube.
- Tab Layouts: Choose vertical or horizontal tab alignment.
- Tab Unloading: Save memory by unloading inactive tabs.
- Smart Address Bar: Search suggestions directly in the address bar, with quick calculations, weather, and translation.
- Private Tabs (Incognito Tabs): Open private browsing sessions that don't store history and cookies.
- Clipboard & Download Popup: Attach recent images from the clipboard/downloads, inspired by Opera's Easy Files.
- Extension Support: Supports Chrome web store extensions.
- Google Safe Browsing: Protects against malicious websites.
- Anti-Tamper Mode: Keeps browsing unrestricted by allowing text selection, copy/paste, right-click menus, and developer tools on sites that block them.
To install SLBr, follow these steps:
- Download the latest release.
- Ensure the following requirements are installed:
- Microsoft Visual C++ Redistributable - Direct Download x64 (Should be bundled in the computer already)
- .NET 9.0 - (Launching SLBr without .NET 9.0 will automatically prompt a redirect to a direct download.)
- Segoe Fluent Icons - Direct Download (Windows 11 users are not required to download)
- Windows 10 & above
- Chromium Embedded Framework (CEF): Thanks to Marshall A. Greenblatt.
- CefSharp Team: Thanks to Amaitland and the CefSharp team.
- IPFS Implementation (Not present in latest rework): Thanks to Ranger Mauve for assisting with the implementation of IPFS in SLBr.
Feature suggestions and contributions would be much appreciated. Your input helps improve SLBr. Or you can also contribute by sponsoring CefSharp.
SLBr is licensed under the GNU General Public License v3.0.
New Video: YouTube
Old Video: Old SLBr in action
Missing class SECRETS
The SECRETS
file is removed as private API keys are stored inside. To fix it, either:
- Remove the code that is causing the error, which will remove the ability to use Google Safe Browsing & sign in to Google.
- Generate a new C# class called "SECRETS":
namespace SLBr
{
class SECRETS
{
public static string GOOGLE_API_KEY = "";
public static string GOOGLE_DEFAULT_CLIENT_ID = "";
public static string GOOGLE_DEFAULT_CLIENT_SECRET = "";
public static string DISCORD_WEBHOOK = "";
}
}