
Write browser extensions entirely in Rust, compiled to WebAssembly. Chrome and Firefox.
use leptos::prelude::*;
use oxichrome::prelude::*;
#[oxichrome::extension(
name = "My Extension",
version = "1.0.0",
permissions = ["storage"]
)]
struct Extension;
#[oxichrome::background]
async fn start() {
oxichrome::log!("Running!");
}
#[oxichrome::popup]
fn Popup() -> impl IntoView {
view! {
"Hello from Rust."
}
}
cargo oxichrome build # Chrome/Edge/Brave
cargo oxichrome build --target firefox # Firefox
#[extension], #[background], #[on], #[popup], #[options_page]) transform your Rust into wasm-bindgen exportschrome.storage, chrome.tabs, chrome.runtimecargo oxichrome build handles everything: compilation, wasm-bindgen, manifest generation, JS/HTML shim generation, static asset copying, optional wasm-opt--target firefox generates a Firefox-compatible Manifest V3 extensiondist/chromium/ and dist/firefox/ output directoriesZero JavaScript written by hand.
cargo install cargo-oxichrome
Requires:
- Rust (stable)
- wasm32-unknown-unknown target (auto-installed on first build)
- wasm-bindgen-cli (auto-installed with version matching on first build)
cargo oxichrome new my-extension
cd my-extension
cargo oxichrome build
cargo oxichrome new scaffolds a project with the oxichrome crate already in [dependencies]:
[dependencies]
oxichrome = { version = "0.2" }
wasm-bindgen = "0.2"
serde = { version = "1", features = ["derive"] }
Chrome/Edge: Load dist/chromium/ in chrome://extensions with "Load unpacked".
Firefox: Build with --target firefox, then load dist/firefox/manifest.json in about:debugging#/runtime/this-firefox.
| Command | Description |
|---|---|
cargo oxichrome build |
Build for Chromium (default) |
cargo oxichrome build --release |
Optimized release build |
cargo oxichrome build --target firefox |
Build for Firefox |
cargo oxichrome clean |
Remove the dist/ directory |
cargo oxichrome new <name> |
Scaffold a new extension project |
oxichrome/
├── oxichrome/ re-export crate (what users depend on)
├── oxichrome-core/ runtime: Chrome API bindings, error types, logging
├── oxichrome-macros/ proc macros
├── oxichrome-build/ source parsing, manifest/shim generation
├── oxichrome-cli/ the cargo oxichrome command
└── examples/
├── counter-extension/
└── color-picker/
#[oxichrome::extension(...)]Defines extension metadata. Applied to a struct.
#[oxichrome::extension(
name = "My Extension",
version = "1.0.0",
description = "Optional description",
permissions = ["storage", "tabs"]
)]
struct MyExtension;
#[oxichrome::background]Marks an async function as the background service worker entry point.
#[oxichrome::background]
async fn start() {
oxichrome::log!("Started.");
}
#[oxichrome::on(namespace::event)]Registers an async function as a Chrome event listener.
#[oxichrome::on(runtime::on_installed)]
async fn on_install(details: oxichrome::__private::wasm_bindgen::JsValue) {
oxichrome::log!("Installed: {:?}", details);
}
#[oxichrome::popup]Marks a Leptos component as the popup UI.
#[oxichrome::popup]
fn Popup() -> impl IntoView {
view! {
"Hello."
}
}
#[oxichrome::options_page]Marks a Leptos component as the options page UI.
#[oxichrome::options_page]
fn Options() -> impl IntoView {
view! { <h1>"Settings"</h1> }
}
// Storage
let val: Option<i32> = oxichrome::storage::get("key").await?;
oxichrome::storage::set("key", &42).await?;
oxichrome::storage::remove("key").await?;
// Tabs
let tabs: Vec<Tab> = oxichrome::tabs::query(&query).await?;
let tab: Tab = oxichrome::tabs::create(&props).await?;
oxichrome::tabs::send_message(tab_id, &msg).await?;
// Runtime
let url = oxichrome::runtime::get_url("icon.png");
oxichrome::runtime::send_message(&msg).await?;
dist/
├── chromium/ # default target
│ ├── manifest.json
│ ├── background.js
│ ├── popup.html / popup.js
│ ├── options.html / options.js
│ └── wasm/
│ ├── crate_name.js
│ └── crate_name_bg.wasm
└── firefox/ # --target firefox
├── manifest.json # background scripts, gecko ID
└── ... # same files as chromium/
MIT
$ claude mcp add oxichrome \
-- python -m otcore.mcp_server <graph>