NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Color type of activities on schedule AGH WIMIIP
// @namespace http://tampermonkey.net/
// @version 1.0
// @description try to take over the world!
// @author CherryTree
// @match https://dziekanat.agh.edu.pl/PodzGodzin.aspx
// @grant none
// @license MIT
// @require https://code.jquery.com/jquery-2.1.4.min.js
// ==/UserScript==
$("#ctl00_ctl00_ContentPlaceHolder_RightContentPlaceHolder_dgDane tr")
.each(function() {
if ($(this).text().includes("Ćwiczenia laboratoryjne")) drawRow($(this), '#D84E58');
if ($(this).text().includes("Ćwiczenia projektowe")) drawRow($(this), '#CD637E');
if ($(this).text().includes("Wykład")) drawRow($(this), '#6EA6BC');
});
function drawRow (elementTr, color){
elementTr.find('td').each (function() {
$(this).css('background-color', color);
});
}