Last active
February 13, 2024 23:32
-
-
Save NaokiStark/2a52fcbda4bcc1300294a903123abd4a to your computer and use it in GitHub Desktop.
recarga la pagina
This file contains hidden or 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 VNT Reloader | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Recarga cada 5 minutos la pagina de validez en caso de error | |
// @author Nekita Burger | |
// @match https://titulosvalidez.educacion.gob.ar/validez/detitulos/noaccess.php* | |
// @icon https://www.argentina.gob.ar/profiles/argentinagobar/themes/argentinagobar/argentinagobar_theme/favicon.ico | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
// 300000 = 5 min | |
setTimeout(()=>(location.href = 'https://titulosvalidez.educacion.gob.ar/validez/detitulos/index.php'), 300000); | |
// Your code here... | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment