- docShell.allow* attributes can be changed via tab context menu. [not in Songbird]
- Tabs can be switched by turning the mouse wheel on the tab bar.
-
- New tabs can be opened by double clicking on any tab.
-
- Tabs open relative (next) to the current tab, if minit.open_tabs_relative is true.
- Included fixes for
Other Variants
miniT (tabscroll): Only tab scrolling.
Firefox, Tab Mix, and Tabbrowser Extensions base their tab reordering code on miniT.
Configurations:
Code: Select all
prefs.js: (use about:config to edit these) [requires restart]
// Disable dblclick handler
user_pref("minit.dblclick", false);
// Enable the docShell menu
user_pref("minit.docShell", true);
// Open tabs relative (next) to current tab
user_pref("minit.open_tabs_relative", true);
// Disable tabscroll feature
user_pref("minit.tabscroll", false);
userChrome.css:
/* Hide the docShell menu */
#miniT-docShell, #sep-miniT-docShell {display:none}
Notable Firefox Tweaks:
Code: Select all
prefs.js:
// Open bookmarks in the background
user_pref("browser.tabs.loadBookmarksInBackground", true);
userChrome.css:
/* Don't let tab labels receive focus */
tab {-moz-user-focus: ignore !important;}
/* Hide the drop indicator */
.tab-drop-indicator-bar {display:none !important}
Changes:
20110327: [miniT, miniT (tabscroll)]
- Added support for Firefox 4 dropped support for Firefox 3.5
- Removed support for Flock
- Re-added partly support for Songbird
- Improved support for SeaMonkey
- Removed the workaround for problems introduced by 300412 and 254021
- Removed the fix for 264009
- minit.open_tabs_relative should work again
- Added minit.dblclick (default enabled) and minit.docShell (default disabled) prefs
- Added allowDNSPrefetch to the docShell menu
Full Changelog