• Stars
    star
    112
  • Rank 312,240 (Top 7 %)
  • Language
    JavaScript
  • License
    Mozilla Public Li...
  • Created over 6 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Firefox addon aiming to utilize screen estate more efficiently by showing tabs in a sidebar grouped by privacy containers. Inspired by TreeStyleTab.

Container Tabs Sidebar

A firefox addon that shows currently opened tabs in a sidebar grouped by a privacy container.

Promotional screenshot

How to use

In order to use this addon it's recommended to have firefox version >=59 installed. It might work with a version as low as 54, but there were no tests done with these builds. You can download the latest firefox from firefox.com

Installing from addons.mozilla.org

  1. Visit Container Tabs Sidebar on mozilla.org
  2. Click Add to Firefox button

Manually installing the addon for development purposes

Debugging via npm:

  1. If you have npm installed, you can execute the following command: npm run dev. A Firefox window should open.

Installing as temporary add-on

  1. Clone or download a zip of this repository.
  2. Navigate to about:debugging.
  3. Click Load Temporary Add-on.
  4. Select manifest.json inside src directory.

Opening the sidebar

In order to open the sidebar click F2 button on your keyboard. If it doesn't work then open any sidebar (eg. using Ctrl+b), and change the sidebar via dropdown menu.

Customizing containers

In order to add/remove containers navigate to about:preferences#containers.

Appearance modifications

Summary of How to Create a userChrome.css File on userchrome.org

  1. Create a file called 'userChrome.css' in a directory called 'chrome' inside your user profile directory
  2. Add the below data to the file

Warning: Starting with Firefox 69 you have to enable toolkit.legacyUserProfileCustomizations.stylesheets in about:config in order to use modifications listed below.

Note: For Firefox <72 you also need a @namespace directive at the beginning of the file.

Note: the @namespace directive only has to appear once in that file.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

See this discussion thread for details.

Hiding the Sidebar Header

In order to hide the sidebar header you need to append to the userChrome.css file the following code:

#sidebar-box[sidebarcommand^="containertabs"] #sidebar-header {
	display: none;
}
Before After
Before hiding After hiding

Hiding the Tab Bar

In order to hide the Tab Bar you need to append to the userChrome.css the following code:

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

#main-window:not([tabsintitlebar="true"]) #TabsToolbar {
    visibility: collapse !important;
}
/* for Firefox 72 and beyond */
/* credit to stapuft at https://github.com/piroor/treestyletab/issues/2207#issuecomment-478288590 */

#tabbrowser-tabs, #TabsToolbar {
  visibility: collapse !important;
}

Change Icon into Black from White

This userChrome.css rule will make the icon become black on Toolbar, Sidebar, and Pop up menu

Black Icon for white Template

#sidebar-box[sidebarcommand^="containertabs"] #sidebar-header #sidebar-icon,
#sidebarMenu-popup #button_containertabssidebar_maciekmm_net-sidebar-action .toolbarbutton-icon,
#nav-bar-customization-target #containertabssidebar_maciekmm_net-browser-action .toolbarbutton-icon {
  filter: invert(100%);
}

More Repositories

1

messenger-platform-go-sdk

βœ‰οΈ A GO SDK for Facebook's messenger-platform: https://developers.facebook.com/docs/messenger-platform
Go
108
star
2

sitemap-generator

A highly concurrent Go solution to build sitemaps. Features CLI, proxy support, rate limiting, robots.txt compliant, url filtering and many other features.
Go
22
star
3

AntiAura

AntiAura (check aura) is a simple plugin that allows you to check if someone has killAura hack.
Java
16
star
4

go-steam-web

Logging in to steam via steamcommunity website.
Go
5
star
5

CurveAPI

Provides transparent API for popular game: CurveFever
Go
3
star
6

environment-agnostic-frontend-docker-image

HTML
2
star
7

advent-of-code-2015

Doing AdventOfCode.com challenge with added rule: different language every day.
Go
2
star
8

AntiAutoSoup

Anti auto souping plugin
Java
1
star
9

hackathon-uek-platforma-backend

πŸ’¬ UEK Hackathon Entry Backend
Go
1
star
10

enroll-me-2-caldav-exporter

Simple and naive Caldav exporter for enroll-me system on IEiT faculty.
JavaScript
1
star
11

CurveSignatures

Generates fancy signatures based on CurveAPI :)
Go
1
star
12

origami

🦒 step by step origami folding visualisator and simulator
Python
1
star
13

PhoneticTranscriptor

βœ’οΈ Transcript phonetic alphabet to language specific phones
Go
1
star
14

hackathon-hackheroes-sciana-placzu-backend

πŸ₯ Allows poles to seek for first available dates of appointments in treatment facilities. It solves the problem of very long waiting time by distributing patients across hospitals.
Go
1
star
15

advent-of-code-2019

πŸŽ„ 2019 solutions for Advent of Code
Go
1
star
16

advent-of-code-2016

πŸŽ„ This repository contains solutions for 2016 edition of Advent of Code in Go language.
Go
1
star
17

dokanki

Convert properly structured documents (Google docs, DOC(x), HTML, PDF) to Anki flashcards
Python
1
star
18

cv

πŸ“ƒ Personal CV in LaTeX
TeX
1
star