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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@iorate/wepub

v0.9.2

Published

CLI to publish browser extensions to Chrome Web Store, Firefox Add-ons, and Edge Add-ons

Readme

wepub

Crates.io CI License

A CLI to publish browser extensions to web stores.

Chrome Web Store API v2, Firefox Add-ons API v5, and Edge Add-ons API v1.1 are supported.

It is used in uBlacklist's release workflow to publish to all three stores.

Examples

Chrome Web Store

wepub chrome ./my-extension.zip \
  --publisher-id  "..." \
  --item-id       "..." \
  --client-id     "..." \
  --client-secret "..." \
  --refresh-token "..."

Firefox Add-ons

wepub firefox ./my-addon.zip \
  --addon-id   "..." \
  --api-key    "..." \
  --api-secret "..." \
  --channel    listed

Edge Add-ons

wepub edge ./my-addon.zip \
  --product-id "..." \
  --client-id  "..." \
  --api-key    "..."

Install

GitHub Actions, via setup-wepub:

uses: iorate/setup-wepub@v1

Shell script (macOS / Linux):

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/iorate/wepub/releases/latest/download/wepub-installer.sh | sh

PowerShell (Windows):

powershell -ExecutionPolicy Bypass -c "irm https://github.com/iorate/wepub/releases/latest/download/wepub-installer.ps1 | iex"

Homebrew:

brew install iorate/tap/wepub

npm:

npm install -g @iorate/wepub

Cargo (requires Rust 1.88+):

cargo install wepub

Prebuilt binaries for macOS, Linux, and Windows are also on the release page.

Usage

Only existing items can be updated; the initial submission of a new extension still has to go through each store's web UI.

Chrome Web Store

Follow Use the Chrome Web Store API to obtain an OAuth client ID, client secret, and refresh token.

Alternatively, pass a pre-fetched OAuth access token via --access-token instead of a refresh token. This is suitable for automated workflows that authenticate with a service account. The two authentication modes are mutually exclusive.

IDs and credentials are required and can be supplied via flags or environment variables:

| Flag | Environment variable | | ------------------ | ------------------------------ | | --publisher-id | WEPUB_CHROME_PUBLISHER_ID | | --item-id | WEPUB_CHROME_ITEM_ID | | --client-id | WEPUB_CHROME_CLIENT_ID | | --client-secret | WEPUB_CHROME_CLIENT_SECRET | | --refresh-token | WEPUB_CHROME_REFRESH_TOKEN | | --access-token | WEPUB_CHROME_ACCESS_TOKEN |

Other flags:

| Flag | Description | | --------------------- | ------------------------------------------------------------------------------------------------------ | | --publish-type | Whether to publish immediately on approval (default) or stage for later publishing (staged). | | --deploy-percentage | Initial deploy percentage (0-100). Omit to use the Developer Dashboard default. | | --skip-review | Attempt to skip item review (true or false). |

Firefox Add-ons

Obtain an API key and an API secret from the API Credentials Management Page.

IDs and credentials are required and can be supplied via flags or environment variables:

| Flag | Environment variable | | ----------------- | ------------------------------ | | --addon-id | WEPUB_FIREFOX_ADDON_ID | | --api-key | WEPUB_FIREFOX_API_KEY | | --api-secret | WEPUB_FIREFOX_API_SECRET |

Other flags:

| Flag | Description | | ----------------------- | ------------------------------------------------------------------------------------------------- | | --channel | Required. Version channel (listed or unlisted). Determines visibility on the site. | | --compatibility | Compatible applications, comma-separated (e.g. firefox,android). | | --approval-notes | Information for Mozilla reviewers. Mutually exclusive with --approval-notes-file. | | --approval-notes-file | Path to a file containing approval notes. Use - for stdin. | | --release-notes | Release notes. Mutually exclusive with --release-notes-file. | | --release-notes-file | Path to a file containing release notes. Use - for stdin. | | --release-notes-lang | Locale code for the release notes (e.g. en-US, ja). Defaults to en-US. | | --source | Path to a source archive to attach to the version. |

Edge Add-ons

Obtain a client ID and an API key from the Publish API page of the Partner Center developer dashboard.

The product ID is the GUID shown on the Extension overview page in Partner Center.

IDs and credentials are required and can be supplied via flags or environment variables:

| Flag | Environment variable | | ----------------- | --------------------------- | | --product-id | WEPUB_EDGE_PRODUCT_ID | | --client-id | WEPUB_EDGE_CLIENT_ID | | --api-key | WEPUB_EDGE_API_KEY |

Other flags:

| Flag | Description | | -------------- | ---------------------------------------------------------------------------- | | --notes | Notes for certification. Mutually exclusive with --notes-file. | | --notes-file | Path to a file containing notes for certification. Use - for stdin. |

.env file

wepub reads a .env file from the current working directory at startup, so the WEPUB_* variables above can live there. Existing shell environment values take precedence over .env entries.

Proxies

wepub honors the http_proxy, https_proxy, and no_proxy environment variables (via libcurl); OS-level proxy settings are not read.

License

Licensed under either of MIT or Apache-2.0, at your option.