You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
571 B
18 lines
571 B
// ==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;
|
|
})();
|