Add the “User CSS” chrome extension (free) and then paste in the following:
/* add extra margin to top*/
/* so filter popup does not hide first record*/
#viewContainer {
margin-top:120px;
}
/* hide annoying view popups*/
div[id$=“tooltip”].dark{
display:none;
}
/* restrict height of long text fields in form view*/
/* and add scroll bar */
.contentEditableTextbox{
max-height:200px;
overflow-y:auto;
}