// ==UserScript==
// @name           GmailMonospace
// @namespace      http://www.otchy.com/
// @include        http://mail.google.com/mail/*
// ==/UserScript==
(function(){
    var ele = document.createElement("style");
    ele.innerHTML = 'div.mb, textarea {font-family: monospace;}';
    document.body.appendChild(ele);
})();

