about-addons-memory
about-addons-memory copied to clipboard
Add option to hide disabled addons
When you have many addons, you quickly lose the overview. I would like an option to hide disabled addons.
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;}
}
I guess, that type of workaround will be impossible within the constraints of WebExtensions APIs. True?
Thats correct. You can probably use userChrome.css though.
/* 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.