Skip to content
/ pinstripe Public

Firefox addon that puts pinned tabs in a sidebar

Notifications You must be signed in to change notification settings

TRPB/pinstripe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pinstripe

Puts pinned tabs in a sidebar. Open with Alt+Shift+P.

screenshot

Pin your tabs and they'll appear in the resizable sidebar.

userChrome.css

Firefox is limited on what you can do with sidebars, and by default enforces a very large minimum width. For optimal appearance you will need to set up your userChrome.css as outlined here: https://www.howtogeek.com/334716/how-to-customize-firefoxs-user-interface-with-userchrome.css/ with the following:

#sidebar-header {
	display: none !important;
}

#sidebar-splitter {
	width: 1px !important;
	border: 0 !important;
}

#sidebar {
	min-width: 0em !important;
}


.tabbrowser-tab[pinned=true] {
	display: none;
}

About

Firefox addon that puts pinned tabs in a sidebar

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published