Added mail deref script.

This commit is contained in:
Some guy named Michael 2021-04-28 01:56:23 -04:00
parent b755ce8bc0
commit 9898f0e6a5
2 changed files with 22 additions and 2 deletions

View File

@ -32,12 +32,15 @@ Edit the script to point to the executables for each program and create a shortc
### Javascript ### Javascript
**USPS-CollapseTracking.js** **mailderef-SpeedUpWait.js**
This is a tampermonkey script that collapses the 'see more' portion of the USPS tracking page and scrolls to the top. 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** **Reddit-RemovePostBar.js**
This script deletes the new post bar at the top of the reddit page that serves no purpose. 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 ### 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. 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.

View File

@ -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;
})();