parent
b755ce8bc0
commit
9898f0e6a5
@ -0,0 +1,17 @@
|
|||||||
|
// ==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;
|
||||||
|
})();
|
Loading…
Reference in new issue