about-addons-memory icon indicating copy to clipboard operation
about-addons-memory copied to clipboard

Add option to hide disabled addons

Open Smile4ever opened this issue 10 years ago • 4 comments

When you have many addons, you quickly lose the overview. I would like an option to hide disabled addons.

Smile4ever avatar Jun 14 '15 07:06 Smile4ever

As a workaround, one can use Stylish and create a new style for about:addons-memory:

@namespace url(http://www.w3.org/1999/xhtml); @-moz-document url("about:addons-memory") { .disabled{display: none !important;} }

Smile4ever avatar Jun 23 '15 14:06 Smile4ever

I guess, that type of workaround will be impossible within the constraints of WebExtensions APIs. True?

grahamperrin avatar Dec 30 '17 00:12 grahamperrin

Thats correct. You can probably use userChrome.css though.

Smile4ever avatar Dec 30 '17 09:12 Smile4ever

/* about:addons-memory hide disabled add-ons */
@-moz-document url("about:addons-memory") {
.disabled{display:none !important;}
}

The chrome directory

I couldn't get the style to work with userChrome.css.

Eventually I realised, it works with a different file: userContent.css.

With legacy Stylish 2.1.1

The workaround remains good.

Less limiting than the chrome directory. I can disable the style without restarting Waterfox, and so on.

grahamperrin avatar Jul 11 '18 04:07 grahamperrin