Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Infinite 10 Minute Mail
  3. // @version 1.0
  4. // @description Keeps the timer for 10 Minute Mail above 0:00 forever.
  5. // @author Midnoclose
  6. // @match *://10minutemail.com/10MinuteMail/index.html
  7. // @downloadURL none
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. window.onload = function start() {
  12. loop();
  13. }
  14.  
  15. if(window.location.hostname == "10minutemail.com") {
  16. function loop() {
  17. window.setInterval(function () {
  18. resetSessionLife();
  19. }, 750);
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement