Skip to content

Instantly share code, notes, and snippets.

@NaokiStark
Last active February 13, 2024 23:32
Show Gist options
  • Save NaokiStark/2a52fcbda4bcc1300294a903123abd4a to your computer and use it in GitHub Desktop.
Save NaokiStark/2a52fcbda4bcc1300294a903123abd4a to your computer and use it in GitHub Desktop.
recarga la pagina
// ==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