NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Ovidoc - Servicios prestados
// @namespace OvidocServiciosPrestados
// @version 2.0
// @description Muestra la pestaƱa de servicios prestados
// @license GPL-3.0-or-later
// @license MIT
// @author Docent
// @match https://ovidoc.edu.gva.es/ovidoc/*
// @require https://code.jquery.com/jquery-3.4.1.min.js
// @grant none
// ==/UserScript==
// ==OpenUserJS==
// @author alextzval
// ==/OpenUserJS==
$(function() {
$(document).on('mousemove', function() {
var serviciosPrestados = $('#zk_comp_132');
if(serviciosPrestados.length>0) {
serviciosPrestados.show();
}
var hojaServicios = $('#zk_comp_123-chdex, #zk_comp_123');
if(hojaServicios.length>0) {
hojaServicios.show();
}
});
});