
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@wxt-dev/browser
Advanced tools
Provides a cross-browser API for using extension APIs and types based on @types/chrome
@wxt-dev/browserProvides access to the browser or chrome extension APIs and related types.
import { browser, Browser } from '@wxt-dev/browser';
// Or if you're using WXT:
// import { browser, Browser } from 'wxt/browser';
console.log(browser.runtime.id);
const onMessage = (message: any, sender: Browser.runtime.MessageSender) => {
console.log(message);
};
browser.runtime.onMessage.addListener(onMessage);
If you're using WXT, this package is already installed, you don't need to install it manually.
Otherwise, you can install the package from NPM:
pnpm install @wxt-dev/browser
Just run:
pnpm upgrade @wxt-dev/browser
This should update both the manually installed version and the subdependency inside WXT.
Types are generated based on the @types/chrome package, and with modifications specifically for use with WXT.
@types/chrome VersionYou don't need to do anything! A github action is ran every day to generate and publish this package using the latest @types/chrome version.
You can manually generate types via:
pnpm gen
@types/chrome?With WXT, you must import the browser variable to use the extension APIs. The way @types/chrome is implemented forces you to define a global chrome variable. With WXT, this isn't acceptable, we don't want to pollute the global (type) scope or introduce conflicts with auto-imports.
Additionally, WXT overrides types to provide additional type safety for some APIs, like browser.runtime.getURL and browser.i18n.getMessage. With @types/chrome's nested namespace approach, it's not possible to override the types for those functions.
FAQs
Provides a cross-browser API for using extension APIs and types based on @types/chrome
The npm package @wxt-dev/browser receives a total of 172,702 weekly downloads. As such, @wxt-dev/browser popularity was classified as popular.
We found that @wxt-dev/browser demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.