Last active
February 23, 2024 12:08
-
-
Save devnoname120/4a821c872faeb00fc9dff7bb790520d4 to your computer and use it in GitHub Desktop.
Userscript — temp-mail.org fake loading bypass
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name temp-mail.org fake loading bypass | |
// @namespace devnoname120 | |
// @version 2024-02-23 | |
// @description Get rid of the fake 7s loading time that temp-mail.org puts on mailboxes | |
// @author devnoname120 | |
// @match *://temp-mail.org/* | |
// @icon https://temp-mail.org/images/favicon.ico | |
// @run-at document-end | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
document.querySelector('.firstVisitEmailDelay').dataset.value = 0; | |
document.querySelector('.secondVisitEmailDelay').dataset.value = 0; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment