Eternal Mailbox

Automatically adds 10 minutes

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Eternal Mailbox
// @icon         https://10minutemail.net/cdn/images/[email protected]
// @namespace    x4_em
// @version      0.2.1
// @description  Automatically adds 10 minutes
// @author       x4fab
// @match        https://10minutemail.net/
// @license      CC0
// @grant        none
// ==/UserScript==

setInterval(function(){
    if ($('#time').text().split(':')[0] < 3){
        $('[href="more.html"]')[0].click();
    }
}, 1e3);