
Even if you are not paranoid about privacy, only allowing the strict necessary scripts will certainly save you a lot of bandwidth and processor cycles.
Moderators: Lootyhoof, FranklinDM
It doesn't. Having to do that every time you restart is not a fix, it's a pain in the butt.
moonbat wrote: ↑2021-01-01, 10:28By design, every site will break because the extension blacklists all 3rd party content by default and you have to explicitly allow content for it to work. Takes a while to set up by using trial & error combined with common sense (allow content from CDNs used by the site, for example) and hence not for users who don't have the patience to set it up. For youtube you have to allow content from googlevideo.com.
Thank you for the hand-holding.
This was the key thing I was missing. I did not have the toolbar button added to the UI and had completely forgotten it existed. I thought the dashboard and logger in the extension's options were the only configuration-related interfaces available.https://addons.palemoon.org/addon/ematrix/ wrote:To "unbreak" a site, you need to operate on the per-site popup matrix that ηMatrix makes available from its toolbar button. You just need to click on each cell to enable (green) or disable (red) a particular feature.
The search box in the Add-ons Manager does not return results for extensions that you already have installed, since it's there precisely to search for things to install. You needed to search directly on the add-ons site, which it would be wise to bookmark.
You can remove the eMatrix button label by adding the following to your userChrome.css file which is in the chrome folder in the browser profile, then restarting the browser:
Code: Select all
#ematrix-button .toolbarbutton-text {
display: none !important;
}
When the customize toolbars dialog is open, you can drag and drop to rearrange icons wherever you want - including the status bar. Simply drag the extension's button to the status bar and that's it.
Thank you, this is exactly what I needed to do. It's a wonder how I've gone this long without using a custom css, despite being so particular and stubborn.coffeebreak wrote: ↑2021-01-05, 19:33You can remove the eMatrix button label by adding the following to your userChrome.css file which is in the chrome folder in the browser profile, then restarting the browser:Read the linked articles for "how-to" details, or search the forum for posts on userChrome.css (there are many).Code: Select all
#ematrix-button .toolbarbutton-text { display: none !important; }
(if you haven't used it before, you'll find a file in the chrome folder named userChrome-example.css . copy that file and rename the copy userChrome.css .)