Added mail deref script.

master
parent b755ce8bc0
commit 9898f0e6a5

@ -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.

@ -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…
Cancel
Save