marcind70gmail.com / Delete english from schedule AGH WIMIIP

// ==UserScript==
// @name         Delete english from schedule AGH WIMIIP
// @namespace    http://tampermonkey.net/
// @version      1.0
// @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==


$(document).ready(function() {
    $( "#ctl00_ctl00_ContentPlaceHolder_RightContentPlaceHolder_dgDane tr" )
    .each(function() {
    if($(this).text().includes("Język obcy"))
        $(this).remove();
    })
});