Eternal Mailbox

Automatically adds 10 minutes

  1. // ==UserScript==
  2. // @name Eternal Mailbox
  3. // @icon https://10minutemail.net/cdn/images/Icon-72@2x.png
  4. // @namespace x4_em
  5. // @version 0.2.1
  6. // @description Automatically adds 10 minutes
  7. // @author x4fab
  8. // @match https://10minutemail.net/
  9. // @license CC0
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. setInterval(function(){
  14. if ($('#time').text().split(':')[0] < 3){
  15. $('[href="more.html"]')[0].click();
  16. }
  17. }, 1e3);