Skip to content

Instantly share code, notes, and snippets.

@ilammy
Created December 26, 2014 20:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ilammy/72f93e5bf778c06f90d6 to your computer and use it in GitHub Desktop.
Save ilammy/72f93e5bf778c06f90d6 to your computer and use it in GitHub Desktop.
Monospace Gmail Plaintext extension for Chrome
/* Message body and compose interface */
.ii, .Ak, .editable {
font-family: monospace !important;
font-size: 100% !important;
}
{
"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