NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Fastmail - always show email details // @namespace ston3.uk // @description Auto show the email message header details // @include https://www.fastmail.com/* // @version 1 // @grant none // ==/UserScript== var style = document.createElement("style"); style.innerHTML = ".v-Message-details { height: auto; } .v-MessageCard-toggleDetails {display:none;}"; document.body.appendChild(style);