Greasy Fork is available in English.

Click here to logout clicker

try to take over the world!

// ==UserScript==
// @name         Click here to logout clicker
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://onlinebooking.sand.telangana.gov.in/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var intId = setInterval(function(){
    if($("#ccMain_tblLogOut").get(0).style.display != "none") {
        $("#btnLogout").click();
        clearInterval(intId);
    }
    },200);
})();