A Firefox extension that enables and manages Firefox's built-in adblock-rust engine — Brave's open-source, Rust-based ad and tracker blocking engine, quietly shipped in Firefox 149.
In March 2026, Firefox 149 silently shipped adblock-rust — the same Rust-based content blocking engine that powers Brave's native ad blocker. It supports network request blocking, cosmetic filtering, and is fully compatible with uBlock Origin filter list syntax.
Mozilla shipped it disabled by default, with no user interface and no mention in the release notes. It is controlled exclusively by two about:config preferences:
| Preference | Purpose |
|---|---|
privacy.trackingprotection.content.protection.enabled |
Enables/disables the engine |
privacy.trackingprotection.content.protection.test_list_urls |
Pipe-separated list of filter list URLs |
This extension gives you a proper UI to manage both.
- 🛡 One-click ETP toggle — Disable Firefox's built-in Enhanced Tracking Protection so adblock-rust handles blocking instead. Applied instantly via the standard WebExtension Privacy API.
- 📋 Guided setup — Step-by-step instructions for the
about:configprefs that can't be set programmatically, with one-click copy buttons for every value you need to paste. - 📝 Filter list manager — Add, remove, and reorder filter lists. Builds the pipe-separated value for you automatically.
- ⚡ 8 preset lists — Quick-add popular lists including EasyList, EasyPrivacy, uBO Filters, AdGuard, and more.
- 💾 Persistent state — Your lists and settings survive browser restarts.
- ✅ Progress tracking — Mark each setup step as done to keep track of what's been applied.
Standard WebExtensions cannot write arbitrary about:config preferences. That requires a Mozilla-signed privileged add-on — something only possible through Mozilla's internal signing pipeline.
The browser.privacy API covers ETP (Enhanced Tracking Protection) and that toggle works instantly. But the two adblock-rust prefs have no equivalent WebExtension API, so the extension guides you through a one-time ~30 second manual setup instead.
- Firefox 149 or later (where adblock-rust is bundled)
- Windows, macOS, or Linux
Temporary add-ons are the easiest way to try the extension. They are removed when Firefox restarts.
- Download the latest
adblock-rust-manager.xpifrom Releases - Open Firefox and navigate to
about:debugging - Click "This Firefox" in the left sidebar
- Click "Load Temporary Add-on…"
- Select the downloaded
.xpifile - The purple shield icon appears in your toolbar
For a permanent install that survives restarts, Firefox needs to allow unsigned extensions first.
- Go to
about:configin Firefox - Search for
xpinstall.signatures.requiredand set it tofalse - Go to
about:addons - Click the gear icon ⚙️ → "Install Add-on From File…"
- Select the
.xpifile
⚠️ Settingxpinstall.signatures.requiredtofalseallows any unsigned extension to be installed. Only install extensions you trust.
git clone https://github.com/your-username/adblock-rust-manager
cd adblock-rust-manager
zip -r adblock-rust-manager.xpi . -x "*.DS_Store" -x "*.git*" -x "README.md"Then follow Option A or B above using the generated .xpi.
Once the extension is installed, click the purple shield icon in the Firefox toolbar to open the popup.
Toggle "Disable Enhanced Tracking Protection" at the top of the popup. This turns off Firefox's built-in ETP globally so adblock-rust handles all blocking. The change is instant — no about:config needed.
If you prefer ETP to remain active on most sites, leave this off and only disable it for specific sites via the shield icon in the address bar.
- Click "Copy pref name" in the Step 1 section — the pref name is now in your clipboard
- Open a new Firefox tab and type
about:configin the address bar, then press Enter - Accept the warning if prompted
- Paste the pref name into the search bar:
privacy.trackingprotection.content.protection.enabled - Click the toggle button on the right to set it to
true - Back in the extension popup, click "Mark done ✓"
- In the extension popup, add or remove filter lists using the list manager. The four default lists are pre-loaded:
- EasyList — core ad blocking
- EasyPrivacy — tracker blocking
- Fanboy Cookie Monster — cookie banners
- uBO Annoyances — other annoyances
- Click "Copy URL list value" — the combined pipe-separated value is now in your clipboard
- Go back to
about:configand search for:privacy.trackingprotection.content.protection.test_list_urls - Click the pencil ✏️ icon to edit the preference
- Paste the copied value and click the checkmark ✓ to save
- Back in the popup, click "Mark done ✓"
That's it. adblock-rust is now active with your chosen filter lists.
Additional lists available via the Quick-add chips in the popup:
- uBO Filters
- Peter Lowe's Ad & Tracking Server List
- AdGuard Base Filters
- AdGuard Tracking Protection
- In the extension popup, make sure ETP is disabled for the site you're testing (or use the shield icon in the address bar to disable it per-site)
- Visit a site with known ads such as yahoo.com
- Ad slots will still render in the page layout, but the actual ad content will be blocked — you'll see empty boxes or "Advertisement" placeholders instead of real ads
adblock-rust-manager/
├── manifest.json # MV3 manifest — action, privacy, storage, tabs permissions
├── background.js # Seeds default storage on first install
├── popup/
│ ├── popup.html # Extension popup UI
│ ├── popup.js # All UI logic + browser.privacy API calls
│ └── popup.css # Styles (supports light & dark mode)
└── icons/
├── icon16.png
├── icon32.png
├── icon48.png
└── icon96.png
An earlier version of this extension used Firefox's experiment_apis mechanism to write about:config prefs directly. This was removed because experiment_apis only works on Firefox Nightly and Developer Edition — it cannot be used in Release Firefox without a Mozilla-signed privileged add-on, regardless of about:config flags.
The current approach uses only standard MV3 WebExtension APIs and requires no special Firefox configuration beyond the one-time about:config setup described above.
| Permission | Why it's needed |
|---|---|
privacy |
Controls ETP via browser.privacy.websites.trackingProtectionMode |
storage |
Persists filter lists and toggle states across sessions |
clipboardWrite |
Copies pref names and URL list values to your clipboard |
MPL-2.0 — the same license as adblock-rust itself.