Created
December 26, 2014 20:52
-
-
Save ilammy/72f93e5bf778c06f90d6 to your computer and use it in GitHub Desktop.
Monospace Gmail Plaintext extension for Chrome
This file contains 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
/* Message body and compose interface */ | |
.ii, .Ak, .editable { | |
font-family: monospace !important; | |
font-size: 100% !important; | |
} |
This file contains 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
{ | |
"manifest_version": 2, | |
"name": "Monospace Gmail Plaintext", | |
"version": "1.0", | |
"description": "This extension makes plantext emails in Gmail to be typeset with monospace font", | |
"author": "ilammy", | |
"content_scripts": | |
[ | |
{ | |
"matches": [ "https://mail.google.com/*" ], | |
"css": [ "gmail_monospace_plaintext.css" ] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment