All Projects → maciekmm → Container Tabs Sidebar

maciekmm / Container Tabs Sidebar

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

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Container Tabs Sidebar

Treestyletab
Tree Style Tab, Show tabs like a tree.
Stars: ✭ 2,438 (+2702.3%)
Mutual labels:  hacktoberfest, sidebar, firefox, firefox-addon
Bypass Paywalls Chrome
Bypass Paywalls web browser extension for Chrome and Firefox.
Stars: ✭ 20,876 (+23895.4%)
Mutual labels:  hacktoberfest, firefox, firefox-addon
Mue
Fast, open and free-to-use new tab page for modern browsers
Stars: ✭ 56 (-35.63%)
Mutual labels:  hacktoberfest, firefox, firefox-addon
AntiRickRoll
Chrome extension that blocks Rickrolls!
Stars: ✭ 22 (-74.71%)
Mutual labels:  firefox, firefox-addon, browser-extension
Ccsearch Browser Extension
Cross-Browser extension to search, filter and use images in the public domain and under Creative Commons licenses.
Stars: ✭ 92 (+5.75%)
Mutual labels:  hacktoberfest, firefox-addon, browser-extension
Offline Qr Code
📱 Browser add-on allowing you to quickly generate a QR code offline with the URL of the open tab or other text!
Stars: ✭ 193 (+121.84%)
Mutual labels:  hacktoberfest, privacy, firefox
Multipletab
Multiple Tab Handler, Provides feature to close multiple tabs.
Stars: ✭ 67 (-22.99%)
Mutual labels:  hacktoberfest, firefox, firefox-addon
Urql Devtools
A tool for monitoring and debugging urql during development
Stars: ✭ 131 (+50.57%)
Mutual labels:  firefox, firefox-addon, browser-extension
Jjb
一个帮助你自动申请京东价格保护的chrome拓展
Stars: ✭ 3,083 (+3443.68%)
Mutual labels:  firefox, firefox-addon, browser-extension
Extanalysis
Browser Extension Analysis Framework - Scan, Analyze Chrome, firefox and Brave extensions for vulnerabilities and intels
Stars: ✭ 351 (+303.45%)
Mutual labels:  firefox, firefox-addon, browser-extension
Tracy
A tool designed to assist with finding all sinks and sources of a web application and display these results in a digestible manner.
Stars: ✭ 464 (+433.33%)
Mutual labels:  firefox, firefox-addon, browser-extension
Azure Mask
A browser extension (Chrome, Firefox) that toggles concealment of sensitive information found in the Azure Portal web page such as Subscription Id's
Stars: ✭ 189 (+117.24%)
Mutual labels:  firefox, firefox-addon, browser-extension
Markdown Viewer
Markdown Viewer / Browser Extension
Stars: ✭ 497 (+471.26%)
Mutual labels:  firefox, firefox-addon, browser-extension
Awesome Emoji Picker
Add-on/WebExtension that provides a modern emoji picker that you can use to find and copy/insert emoji into the active web page.
Stars: ✭ 54 (-37.93%)
Mutual labels:  hacktoberfest, firefox, firefox-addon
Synology Download Manager
An open source browser extension for adding/managing download tasks to your Synology DiskStation.
Stars: ✭ 138 (+58.62%)
Mutual labels:  firefox, firefox-addon, browser-extension
stylish-hub
🍹 A browser extension that brings new GitHub features and experience.
Stars: ✭ 14 (-83.91%)
Mutual labels:  firefox, firefox-addon, browser-extension
firefox-containers-helper
Firefox multi-account containers are for power users. So is this. Adds bulk container interactivity features missing from the Mozilla Multi-Account Containers extension.
Stars: ✭ 32 (-63.22%)
Mutual labels:  firefox, privacy, firefox-addon
Temporary Containers
Firefox Add-on that lets you open automatically managed disposable containers
Stars: ✭ 488 (+460.92%)
Mutual labels:  privacy, firefox, firefox-addon
Duckduckgo Privacy Extension
DuckDuckGo Privacy Essentials browser extension for Firefox, Chrome.
Stars: ✭ 692 (+695.4%)
Mutual labels:  privacy, firefox, browser-extension
Autofill Firefox
Autofill is a small but powerful add-on for Mozilla Firefox that serves one purpose: fill form fields automatically on page load. It is for people who just want a straightforward form filler without all the bells and whistles.
Stars: ✭ 46 (-47.13%)
Mutual labels:  firefox, firefox-addon

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 {
  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%);
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].