// ==UserScript==
// @name         Speed up mail.com defref
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Decreases the time spent waiting at the 'redirecting you to...' page for all links in emails on mail.com
// @author       WTMike24
// @match        https://deref-mail.com/mail/client/*
// @icon         https://www.google.com/s2/favicons?domain=deref-mail.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    window.location = document.getElementsByTagName('a')[1].href;
})();