Feature Request: Hide blue checkmarks on certain websites

LanguageTool is great, but I am finding it quite intrusive in certain workflows. For example, when working with a tool like Milanote or Google Tasks, I appreciate having spellchecking, however as you can see, the little blue checkmarks that pop-up when everything is OK gets really distracting and ugly.

image

A little toggle to hide this graphical element, either for all sites, or on a per-site basis would be greatly appreciated!

1 Like

I’ve created a userscript / CSS style to make those checkmarks less intrusive:
The CSS rule is this:

.lt-toolbar__status-icon--has-no-errors {
   opacity: 0.1 !important;
   transform: scale(0.5);
}

And this is the whole userscript content:

// ==UserScript==
// @name         Hide LT checkmark
// @version      0.1
// @author       Evren
// @match         *://*/*
// @grant        GM_addStyle
// ==/UserScript==


(function() {
    'use strict';
const STYLES = `

.lt-toolbar__status-icon--has-no-errors {
opacity: 0.1 !important;
transform: scale(0.5);

}
`
GM_addStyle(STYLES);

})();
1 Like