Most of us have dozens of open tabs, and it quickly becomes cumbersome to manage them efficiently. UnTab is a browser extension that gives you superpowers by making it possible to search through open tabs and perform common actions with just a few keystrokes. This in turn boosts productivity and makes you look like a hero!
UnTab is officially supported on following browsers:
- Google Chrome(via Chromium support)
- Firefox browser
- Microsoft Edge(via Chromium support)
UnTab might also be compatible with other browsers that use Chromium under the hood.
git clone https://github.com/blenderskool/untab.git
cd untab-
src: Primary source directory where the magic happens!background: Background Script for the extensioncontent: Content Script for the extensioncomponents: UI components written using Svelte. (App.svelte is the main root component)manifest.json: Extension manifest file
-
dist: This directory contains the built files from thesrc -
rollup.config.js: Project build configuration is setup using rollup.
To install the extension on the browser, first build the project using the following command.
npm run buildnpm run build:firefoxAll the built files are generated in the dist directory.
- Go to
chrome://extensions. - Turn ON
Developer mode. - Click on
Load Unpacked. - Select the
distfolder and it will check formanifest.jsonon its own. The extension should now show up on the list. - Go to any page and press Ctrl + Shift + Space or Command + Shift + Space (on Mac) to open UnTab.
- NOTE: Whenever, the build files are changed, to get the changes synced with the installed extension, click on the reload icon next to the installed extension.
- Go to
about:debuggingand selectThis Firefoxon the left sidebar. - Click on
Load Temporary Add-on...button. - Select the
manifest.jsonfile indistfolder that was generated after the build step. The extension should now show up on the list. - Go to any page and press Ctrl + Shift + Space or Command + Shift + Space (on Mac) to open UnTab.
- NOTE: Whenever, the build files are changed, to get the changes synced with the installed extension, click on the
Reloadbutton in the extension that was installed in the 3rd step.
- UnTab does not store or send anything searched/selected in UnTab interface to a server.
- The search index(which includes opened tabs, recent browser history, bookmarks, etc.) prepared by UnTab is generated on the client side everytime and is never sent or stored in a server.
Analytics is kept to a minimum and Google Measurement protocol is being used for these basic analytics. Unlike the regular Google Analytics used on websites, Google Measurement protocol only records the data explicitly defined in code.
- Browser UserAgent is recorded.
- Browser location is recorded.
- Fingerprinting or Returning browser sessions are not recorded.
Following events are tracked:
- Opening the UnTab interface.
- Selecting some item in the UnTab interface.
(NOTE: The content itself in any form is not sent, just an indication that above event occurred)
UnTab is MIT Licensed