Height's AI task summary box is distracting and not useful. This is a simple CSS rule to hide that element.
Height.app: Hide AI task summary by cakoose
Details
Authorcakoose
LicenseCC0
Categoryheight.app
Created
Updated
Size282 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Height.app: Hide AI task summary
@namespace cakoose.com
@version 0.0.1
@license CC0
==/UserStyle== */
@-moz-document domain("height.app") {
.TaskPageTaskSummary {
display: none;
visibility: hidden;
}
}