Skip to content

Latest commit

 

History

History
69 lines (43 loc) · 1.8 KB

README.md

File metadata and controls

69 lines (43 loc) · 1.8 KB

Tabtastic

Tabtastic is a Firefox add-on and Chrome extension that helps you wrangle your current open tabs by ordering them by domain and URL, and closing any duplicates. Perfect for the tab hoarders.

Purpose

During web research I tend to open several tabs, sometimes I end up with several duplicate tabs opened or tabs that are from the same domain scattered all over. The goal of this project is to help solve those problems via a Firefox add-on/Chrome extension.

Give it a Try

🏁 Road Map

  • create icon (must be png since Chrome doesn't support svg see #4)
  • sorts all open tab based on domain
  • eliminates duplicates
  • port over as Chrome extension (see current workaround #1)

Development

Requires: node, firefox or chrome

Dependencies

Install dependencies:

npm i

Start up

Run extension in firefox:

npm run start:firefox

Run extension in chrome:

npm run start:chrome

The add-on/extension will install temporarily and will watch for changes made.

Debugging

Build Release

For now versions should be manually bumped in package.json and manifest.json.

Then run:

npm run build:firefox

and/or

npm run build:chrome