diff --git a/README.md b/README.md index 447480d..9f1543a 100644 --- a/README.md +++ b/README.md @@ -32,12 +32,15 @@ Edit the script to point to the executables for each program and create a shortc ### Javascript -**USPS-CollapseTracking.js** -This is a tampermonkey script that collapses the 'see more' portion of the USPS tracking page and scrolls to the top. +**mailderef-SpeedUpWait.js** +This was created to reduce the time spent at the "You will be redirected..." screen from 3 seconds to no seconds. I don't know why this page exists, but it does. I have an adblocker so maybe there's ads but who knows. **Reddit-RemovePostBar.js** This script deletes the new post bar at the top of the reddit page that serves no purpose. +**USPS-CollapseTracking.js** +This is a tampermonkey script that collapses the 'see more' portion of the USPS tracking page and scrolls to the top. + ### AppTweaks These items aren't really scripts but they are useful little changes I've made to various programs I use that I wanted to consolidate in to one place. Hopefully the comments explain what they all do well enough. diff --git a/javascript/mailderef-SpeedUpWait.js b/javascript/mailderef-SpeedUpWait.js new file mode 100644 index 0000000..8744172 --- /dev/null +++ b/javascript/mailderef-SpeedUpWait.js @@ -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; +})();