Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add option to hide disabled addons #20

Open
Smile4ever opened this issue Jun 14, 2015 · 4 comments
Open

Add option to hide disabled addons #20

Smile4ever opened this issue Jun 14, 2015 · 4 comments

Comments

@Smile4ever
Copy link

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

@Smile4ever
Copy link
Author

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;}
}

@grahamperrin
Copy link

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

@Smile4ever
Copy link
Author

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

@grahamperrin
Copy link

grahamperrin commented Jul 11, 2018

/* 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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants