🚀 Enhancements
- ⚠️ Add support for "main world" content scripts (#284)
🩹 Fixes
📖 Documentation
🏡 Chore
- Convert WXT CLI to an ESM binary (#279)
⚠️ Breaking Changes
defineContentScript
and defineBackground
are now exported from wxt/sandbox
instead of wxt/client
. (#284)
- If you use auto-imports, no changes are required.
- If you have disabled auto-imports, you'll need to manually update your import statements:
- import { defineBackground, defineContentScript } from 'wxt/client'; + import { defineBackground, defineContentScript } from 'wxt/sandbox';