a11y.css
a11y.css copied to clipboard
Disabling images — webextension, or not?
Doable with CSS:
img {
visibility: hidden;
}
* {
background-image: unset !important;
}
But how would we activate this?
Related to #320
We could add another on/off button in the palette?
In the webextension, sure :)
I still have in mind to allow a CSS only usage, and this one is kinda special from this view.