Created
August 16, 2021 22:25
-
-
Save djflux/c0e41f57f4c9b78b16753c9adb67e238 to your computer and use it in GitHub Desktop.
Tampermonkey script to change Outlook 365 fonts to Helvetica
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Helveticize-Outlook365 | |
// @namespace https://flux.fm/ | |
// @include https://outlook.office.com/* | |
// @description Make Outlook fonts better because the suck by default. | |
// @author Andrew Rechenberg | |
// @match https://outlook.office.com/* | |
// @grant GM_addStyle | |
// @version 20210816 | |
// ==/UserScript== | |
GM_addStyle ( ` | |
span:not(span[role=presentation]) { | |
font-family: Helvetica, arial, sans-serif !important; | |
}; | |
span[role=presentation] { | |
font-family: 'controlIcons'; | |
} | |
` ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment