npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

browser-extension-manager

v1.2.3

Published

Browser Extension Manager dependency manager

Readme

🦄 Features

  • Build for Any Browser: Export to Chrome, Firefox, Edge, and Opera.
  • NPM & Gulp: Fueled by an intuitive incorporation of npm and gulp.

🚀 Getting started

  1. Create a repo from the Ultimate Browser Extension template.
  2. Clone the repo to your local machine.
  3. Run these command to get everything setup and sync'd!
npm install
npx bxm setup
npm start
  1. Open your browser and navigate to chrome://extensions (or the equivalent for your browser).
  2. Enable Developer mode.
  3. Click on Load unpacked and select the dist folder in your project directory.
  4. Your extension should now be loaded and ready to use!

📦 How to sync with the template

  1. Simply run npx bxm setup in Terminal to get all the latest updates from the Ultimate Browser Extension template.

🌐 Automatic Translation

When you run npm run build, BEM automatically translates your src/_locales/en/messages.json to 16 languages using Claude CLI: zh, es, hi, ar, pt, ru, ja, de, fr, ko, ur, id, bn, tl, vi, it

Only missing translations are generated - existing translations are preserved.

🌎 Publishing your extension

Manual Upload

  1. Run npm run build in Terminal to build your extension for production.
  2. Upload the .zip file to the browser's extension store.

Automatic Publishing

BEM can automatically publish to Chrome, Firefox, and Edge stores when BXM_IS_PUBLISH=true:

BXM_IS_PUBLISH=true npm run build

Setup: Add store credentials to your .env file:

# Chrome Web Store
CHROME_EXTENSION_ID="your-extension-id"
CHROME_CLIENT_ID="your-client-id"
CHROME_CLIENT_SECRET="your-client-secret"
CHROME_REFRESH_TOKEN="your-refresh-token"

# Firefox Add-ons
FIREFOX_EXTENSION_ID="your-extension-id"
FIREFOX_API_KEY="your-api-key"
FIREFOX_API_SECRET="your-api-secret"

# Microsoft Edge Add-ons
EDGE_PRODUCT_ID="your-product-id"
EDGE_CLIENT_ID="your-client-id"
EDGE_API_KEY="your-api-key"

Only stores with configured credentials will be published to.