Firefox extension to save and restore tabs as bookmarks
 
 
 
 
 
 
Go to file
Joshua J. Berry b48dadf6fb `make up` 2024-02-19 14:53:05 -08:00
.github ci: Use install-deps.sh to install system dependencies 2023-03-29 18:01:44 -07:00
.vscode vscode: Make Prettier reformat the whole file on save 2023-06-02 17:22:26 -07:00
assets Release notes and version bump to 3.0 2023-09-04 14:53:39 -07:00
docs build(deps-dev): bump nokogiri from 1.15.3 to 1.16.2 in /docs (#446) 2024-02-11 11:07:47 -08:00
icons Follow more "standard" design language for item selection 2023-05-06 17:15:55 -07:00
src dnd-list: Fix flickering while dragging top-level items 2024-02-18 21:38:53 -08:00
styles dnd-list: Make dropping on the last item feel a little nicer 2024-02-18 21:33:27 -08:00
.gitignore Replace Webpack with Vite 2022-11-26 14:12:03 -08:00
.mocharc.json Replace Webpack with Vite 2022-11-26 14:12:03 -08:00
.npmrc Specify minimum npm and Node versions [closes #396] 2023-09-08 21:03:51 -07:00
.nycrc Prettierify the codebase 2022-11-25 16:33:41 -08:00
.prettierrc.json Prettierify the codebase 2022-11-25 16:33:41 -08:00
CODE_OF_CONDUCT.md Prettierify the codebase 2022-11-25 16:33:41 -08:00
LICENSE Initial commit 2018-06-07 21:17:50 -07:00
Makefile build: Properly pass through prod/dev build options 2023-06-25 12:04:30 -07:00
README.md Update website and README for 3.0 2023-09-09 09:36:36 -07:00
SECURITY.md Prettierify the codebase 2022-11-25 16:33:41 -08:00
chrome-manifest.patch Apply dark/light theme to the page-action icon 2022-12-10 17:56:47 -08:00
install-deps.sh Update install-deps.sh per Nodesource instructions 2023-09-04 15:05:49 -07:00
mocha-setup.mjs Replace Webpack with Vite 2022-11-26 14:12:03 -08:00
package-lock.json `make up` 2024-02-19 14:53:05 -08:00
package.json build(deps): bump postcss and web-ext (#427) 2023-12-15 18:35:01 -08:00
resize-ff-devedition-for-screenshots.sh Update resize script for new AMO dimensions 2020-05-24 23:53:34 -07:00
test-detect-leaks.mjs Make sure we're releasing resources properly 2023-06-16 22:31:07 -07:00
tsconfig.json `make up` 2023-06-16 21:51:47 -07:00
tsconfig.test.json `make up` 2023-06-16 21:51:47 -07:00
vite.config.base.ts build: Properly pass through prod/dev build options 2023-06-25 12:04:30 -07:00
vite.config.html.ts New-user welcome flow [closes #123] 2023-07-23 18:33:41 -07:00
vite.config.lib.ts Replace Webpack with Vite 2022-11-26 14:12:03 -08:00

README.md

Tab Stash

ci codecov

Can't keep all your tabs straight? Need to clear your plate, but want to come back to your tabs later?

Tab Stash is a no-fuss way to save and organize batches of tabs as bookmarks. Sweep your browser clean with one click of the Tab Stash icon (if configured). Your open tabs will be stashed away in your bookmarks, conveniently organized into groups. When it's time to pick up where you left off, open Tab Stash and restore just the tabs or groups you want.

Screenshot

Want to give it a try?

Install Tab Stash from Mozilla Add-Ons!

Build and Packaging Instructions

You'll need a UNIX-like system (e.g. Mac or Linux) to build Tab Stash. Unfortunately, building on Windows is not supported due to the multiple build steps involved (although patches to make the build more cross-platform are welcome). Here's what you need to do:

  1. Install dependencies. You can use the handy install-deps.sh script to do it automatically on supported OSes/distros (latest macOS and Ubuntu 22.04 are known to work). Or if you prefer to do it manually, install the following:

    • GNU make, git, diff, patch, rsync, zip (plus the usual set of standard UNIX utilities like mkdir, sed, etc.)

    • Node.js and npm (the latest "Current" or "LTS" release)

    • Inkscape version 1.0 or newer--the CLI must be available as inkscape in your PATH. (Note that Inkscape is known not to work when installed via snap; if you're on Ubuntu, please install it with apt-get instead.)

  2. To build a debug/development version: Run make. (You can use -j<...> if you want for a parallel build.)

  3. To build a release version (for packaging or review):

    1. Make sure your source tree has no uncommitted changes (git status should say, nothing to commit, working tree clean).

    2. git checkout the tag for the version you want to build. (Mozilla reviewers, you can skip this step--the provided source bundle should already have the correct tag checked out.)

    3. Run make rel. (You can use -j<...> if you want for a parallel build.)

  4. You'll get the following artifacts:

    • dist: The unpacked Firefox extension

    • dist-chrome: A highly-experimental port to Chrome (also unpacked)

    • (release builds only) releases/tab-stash-X.XX-hhhhhhh.zip: The packed Firefox extension (this is what gets uploaded to AMO)

    • (release builds only) releases/tab-stash-src-X.XX-hhhhhhh.tar.gz: A clean git checkout of the source tree for the release (also for uploading to AMO)

Want to help out?

If you're interested in contributing to Tab Stash, be sure to read the contributing guidelines to get oriented and learn how to submit your changes for inclusion in future releases.

Want to re-distribute Tab Stash?

You're more than welcome to do so according to the terms of the license, and I'm happy to work with you to make sure Tab Stash users have a great experience on your platform. I do have a couple requests, though:

  • Please only ship release packages that are built using make rel per the instructions above. Debug builds may cause performance problems or include other changes that make for a poor user experience.

  • If you find it necessary to apply patches to Tab Stash, please work with me ahead of time to get your proposed changes merged into a release. I unfortunately cannot provide support to users running patched builds. (If your patch introduces a bug, it's going to cause a lot of headache for the user only for me to have to tell them to install the official version.)