
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@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 143,909 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.