edulix / Show Customer info popup during more time and converting urls into links

// ==UserScript==
// @name         Show Customer info popup during more time and converting urls into links
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Show Customer info popup during more time and converting urls into links
// @author       Eduardo Robles Elvira at nVotes https://nvotes.com
// @match        https://salesiq.zoho.eu/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    console.log("Show Customer info popup during more time");

    UTSHandler.showCusObj = function(a) {
        a = $(a);
        a.parents("#vstatus").find("#ccinfodiv").stop(/*clearQueue*/ true, /*jumpToEnd*/ true).fadeIn("slow");
        $(".setng-tooltiplft td:contains('https://')").each(function(index, element) {
            var url = $(element).html();
            if (url.startsWith('https://')) {
                $(element).html(
                    '<a href="' + url + '" target="_blank">' + url + '</a>'
                );
            }
        });
    };

    UTSHandler.hideCusObj = function(a) {
        a = $(a);
        a.parents("#vstatus").find("#ccinfodiv").delay(20000).fadeOut("slow");
    };

})();