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

bye-toby

v1.0.0

Published

Migrate bookmarks from Toby Chrome extension to native Chrome bookmarks

Readme

bye-toby

Migrate all your bookmarks from Toby Chrome extension to native Chrome bookmarks.

Why?

Toby stores your bookmarks in its own cloud service, making them inaccessible outside the extension. This tool converts a Toby JSON export into Chrome's native bookmark format, so you can access them directly from Chrome's bookmark bar — no extension needed.

Install

npm install -g bye-toby

Or use without installing:

npx bye-toby <toby-export.json>

Usage

1. Export from Toby

  1. Open Toby in Chrome (new tab)
  2. Go to Organization Settings (bottom left)
  3. Click Export next to "Export Data"
  4. Choose JSON format and save the file

2. Close Chrome

Chrome must be closed before running the tool — it needs to write directly to Chrome's bookmarks file.

3. Run

bye-toby toby-export.json

If you have multiple Chrome profiles, the tool will ask you to choose. You can also list profiles or specify one directly:

# List available profiles
bye-toby --list-profiles

# Specify a profile
bye-toby toby-export.json --profile Default

4. Open Chrome

Your Toby collections will appear under a "Toby Import" folder in the bookmarks bar. Each Toby collection becomes a subfolder.

Backup & Restore

A backup of your original bookmarks is automatically saved as Bookmarks.bye-toby-backup in your Chrome profile directory before any changes are made.

To restore, close Chrome and copy the backup file back:

# macOS
cp ~/Library/Application\ Support/Google/Chrome/Default/Bookmarks.bye-toby-backup \
   ~/Library/Application\ Support/Google/Chrome/Default/Bookmarks

# Linux
cp ~/.config/google-chrome/Default/Bookmarks.bye-toby-backup \
   ~/.config/google-chrome/Default/Bookmarks

# Windows (PowerShell)
Copy-Item "$env:LOCALAPPDATA\Google\Chrome\User Data\Default\Bookmarks.bye-toby-backup" `
          "$env:LOCALAPPDATA\Google\Chrome\User Data\Default\Bookmarks"

Supported Platforms

  • macOS
  • Windows
  • Linux

Supported Export Formats

  • Organization export ({ groups: [{ lists: [...] }] })
  • Account export ({ lists: [...] })
  • Individual collection export (array of lists)

License

MIT