JustOff / lull-the-tabs

Lull The Tabs - unload inactive tabs to free up browser memory
https://justoff.github.io
Mozilla Public License 2.0
25 stars 3 forks source link

Add an option to disable styling of inactive tabs #9

Closed qtlis closed 5 years ago

qtlis commented 5 years ago

It is redundant when using Tab Mix Plus, since TMP provides similar, but more customisable functionality.

JustOff commented 5 years ago

There are reasons for which I consider it undesirable to customize inactive tab styles on the fly. However, you can always override opacity using userChrome.css:

@-moz-document url("chrome://browser/content/browser.xul") {
  .tabbrowser-tab[pending=true],
  menuitem.alltabs-item[pending=true] {
    opacity: 1 !important;
  }
}