You are on page 1of 1

// ==UserScript==

// @name Reload rdv page


// @version 1
// @include https://https://blsspainmorocco.com/book_appointment.php

// ==/UserScript==

window.setTimeout(function(){ location.reload(); }, 30*1000); //

function sendRequest(email,phone,juridiction) {

document.getElementById("email").value = email;
document.getElementById("phone_code").value = "213";
document.getElementById("phone").value = phone ;
document.getElementById("juridiction").selectedIndex = juridiction;
document.querySelector('.btn-check-otp').click();
sendRequest("votre email","numero telephone","8"); // 31 Oran w 4 Alger

//---------------------------------------------------------------------------------
--------------------------------------------

//---------------------------------------------------------------------------------
---------------------------------------------

var myElement = document.getElementById('reponse_div');


myElement.addEventListener('DOMSubtreeModified', contentChanged, false);
var already = 0;
function contentChanged() {

if(myElement.innerText == "Verification code sent to your phone." && already==0)


{
window.open("https://www.youtube.com/watch?v=BQI1Fvp6rBw","_blank");

}
}

You might also like