Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Bill13579/tabby
A web extension for managing great amounts of windows and tabs at ease.
https://github.com/Bill13579/tabby
browser firefox management manager tab tab-management tabby window window-manager
Last synced: 3 months ago
JSON representation
A web extension for managing great amounts of windows and tabs at ease.
- Host: GitHub
- URL: https://github.com/Bill13579/tabby
- Owner: Bill13579
- License: mpl-2.0
- Created: 2018-04-14T07:00:36.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-09-17T02:56:28.000Z (4 months ago)
- Last Synced: 2024-09-17T06:27:05.138Z (4 months ago)
- Topics: browser, firefox, management, manager, tab, tab-management, tabby, window, window-manager
- Language: JavaScript
- Size: 138 MB
- Stars: 270
- Watchers: 7
- Forks: 23
- Open Issues: 56
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# What is it?
[![ci](https://github.com/Bill13579/tabby/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/Bill13579/tabby/actions/workflows/ci.yml)
Tabby is an open-source window & tab manager that can manage great amounts of windows and tabs at ease.
You can install the latest stable version of Tabby on it's Firefox Add-on page: https://addons.mozilla.org/addon/tabby-window-tab-manager/
Or, to install the newest development version, see the [Building, Installing, and Editing](#building-installing-and-editing) section.# Contributing
If you like this project, please share it. Your support is always welcomed!
Tabby is an open-source project and is in active development, so feel free to submit any issues that you are experiencing and I will do my best to fix it. And if you can fix the issue altogether, feel free to submit a pull request!
# Building, Installing, and Editing
## Prerequisites
- [Git](https://git-scm.com/)
- [Rustup](https://www.rust-lang.org/tools/install) (rustc >= 1.62.1)
- [wasm-pack](https://rustwasm.github.io/wasm-pack/installer/) >= 0.10.3
- [Node.js](https://nodejs.org/en/) >= 16.15.0 LTS
- Firefox >= 59 (recommended)
or
Chrome >= 49 (fully tested on Chrome 72)
**IMPORTANT NOTE:** If you encounter an issue compiling the "lindera-ipadic" dependency on the `npm run build:firefox` step, it is likely that you do not have enough memory or CPU. This is especially an issue on virtual machines, and is hard to detect since the error messages are incredibly vague.
On an Ubuntu VM, 4gb RAM + 2 cores has been proven to work.## Building Tabby
1. Open a git enabled shell of your choice (e.g. Command Prompt, Git Bash)
2. Get the source code
`git clone https://github.com/Bill13579/tabby.git`
3. Go into the Tabby directory
`cd tabby`
4. Install dependencies with npm
`npm install`
5. Build Tabby
Firefox: `npm run build:firefox`
Chrome: `npm run build:chrome`
WebExtension: `npm run build:webext`The `dist` folder, after the build, can then be packaged as a zip file and installed.
## Installation
### Firefox
This will install Tabby as a temporary add-on, so you will need to re-do this everytime you restart Firefox.1. Start Firefox
2. Go to `about:debugging`
3. Press on the `Load Temporary Add-on...` button
4. Select the `manifest.json` file in the `dist` directory### Chrome
1. Start Chrome
2. Go to `chrome://extensions`
3. Press on the `Load unpacked` button
4. Select the `dist` directory## Editing & Testing
After you edit the code, you will need to build again.
Re-do Step 5 of [Building Tabby](#building-tabby) and
- on Firefox, press the `Reload` button in the Tabby section of the `about:debugging` page.
- on Chrome, press the button in the Tabby section of the `chrome://extensions` page.Note: Content Scripts will only be reloaded for each tab once that tab is refreshed.
# File Structure
icons/ - Directory for storing Tabby icons
icons/tabby.svg - Tabby icon (Vector)
icons/tabby.png - Tabby icon (Raster)release/ - Release zip files
screenshots/ - Screenshots
screenshots-archive/ - Old screenshots of old releasesdist/ - Distribution directory
src/ - Source code directory (for more info, go to the [README.md](src/README.md) file in that directory)LICENSE - License file
README.md - README file