My new WXT module for doing amazing things.
- ⛰ Foo
- 🚠 Bar
- 🌲 Baz
Install the module to your WXT extension with one command:
pnpm i my-module
Then add the module to your wxt.config.ts
file:
export default defineConfig({
modules: ["my-module"],
})
That's it! You can now use My Module in your WXT extension ✨
Local development
# Install dependencies
pnpm install
# Generate type stubs
pnpm wxt prepare
# Develop test extension
pnpm dev
# Build the test extension
pnpm dev:build
# Run prettier, publint, and type checks
pnpm check