Greasy Fork is available in English.

UTC Reload

Excute a prgrm at specifque minute and seconde

  1. // ==UserScript==
  2. // @name UTC Reload
  3. // @namespace http://tampermonkey.net/
  4. // @version 3.4
  5. // @description Excute a prgrm at specifque minute and seconde
  6. // @author MeGaBOuSsOl
  7. // @match *.blsspainvisa.com/*appointment.php
  8. // @match https://algeria.blsspainvisa.com/*
  9. // @match https://algeria.blsspainvisa.com/appointment_family.php
  10. // @match https://algeria.blsspainvisa.com/appointment.php
  11. // @match https://algeria.blsspainvisa.com/appointment_family.php
  12. // @require http://code.jquery.com/jquery-3.4.1.min.js
  13. // @grant God
  14. // ==/UserScript==
  15.  
  16.  
  17. var MyDecalage= 0;
  18. var Blsdecalage= 13;
  19. var ATminut1= 0;
  20. var ATminut2= 30;
  21.  
  22. var checkminutes = setInterval(function() {var d = new Date();
  23. var minutes = d.getMinutes(); if((minutes == ATminut1 )||(minutes == ATminut2 )) {
  24.  
  25. var checkSec = setInterval(function() {var d = new Date();
  26. var Seconds = d.getSeconds(); if(Seconds == (Blsdecalage+MyDecalage) ) {window.location.reload();clearInterval(checkSec)}
  27. },401);
  28. ;clearInterval(checkminutes);
  29. }
  30. },401);
  31.  
  32.  
  33.  
  34. /*Button Calcule decalage*/
  35. let btnClient = document.createElement("decalage");
  36. btnClient.innerHTML = 'Get Decalage';
  37. btnClient.setAttribute('id','decalage');
  38. btnClient.setAttribute("title", "Cliquez quand Utc est a 00 afin d'avoir votre décalage par rapport a UTC Time");
  39. btnClient.style.cursor = "pointer";
  40. btnClient.style.position = 'absolute';
  41. btnClient.style.width = (btnClient.innerHTML.length * 15) + 'px'; // setting the width to 200px
  42. btnClient.style.height = '30px'; // setting the height to 200px
  43. btnClient.style.left = '10px';
  44. btnClient.style.top = '100px';
  45. btnClient.style.background = 'Crimson'; // setting the background color to teal
  46. btnClient.style.borderRadius= '25px';
  47. btnClient.style.border = '3px solid lightblue';
  48. btnClient.style.color = 'white'; // setting the color to white
  49. btnClient.style.fontSize = '20px'; // setting the font size to 20px
  50. btnClient.style.fontWeight = "bold";
  51. btnClient.style.textAlign = ('center');
  52. btnClient.style.verticalAlign="bottom";
  53. btnClient.onclick = function() {var da= new Date();
  54. var SecondsDecalage = da.getSeconds(); alert(SecondsDecalage) ;
  55.  
  56. };document.body.appendChild(btnClient);