Eu resolvi isso com um bookmarklet.
(function(){
if (window.jQuery === undefined) {
var done = false;
js = document.createElement('SCRIPT');
js.type = 'text/javascript';
js.src = '//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js';
js.onload = js.onreadystatechange = function() {
if (!done && (!this.readyState || this.readyState == 'loaded' || this.readyState == 'complete')) {
done = true;
initMyBookmarklet();
}
};
document.getElementsByTagName('head')[0].appendChild(js);
} else {
initMyBookmarklet();
}
function processClick(e) {
if (this == e.target) {
window.location = 'mailto:' + $(this).text();
e.stopImmediatePropagation();
e.stopPropagation();
}
};
function initMyBookmarklet() {
(window.myBookmarklet = function() {
$('.wDPsO')
.off('click')
.on('click', processClick);
$(document)
.off('mousedown', '.jNJq8')
.on('mousedown', '.jNJq8', processClick);
})();
}
})();
void(0);
Você pode obter o bookmarklet aqui: link