Zeigt alle Schulen an, die teuer sind
// ==UserScript==
// @name Disallow Schoolings
// @namespace https://sicher.leitstellenspiel.de
// @version 0.1.0
// @description Zeigt alle Schulen an, die teuer sind
// @author sicher
// @license BSD-3-Clause
// @match https://www.leitstellenspiel.de/schoolings
// @icon https://www.google.com/s2/favicons?sz=64&domain=leitstellenspiel.de
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
for(var item of document.getElementById("schooling_opened_table").getElementsByTagName("tr")){
try{
if(item.getElementsByTagName("td")[2].innerText.includes("00 Credits")){
item.getElementsByTagName("td")[0].getElementsByTagName("a")[0].className = "btn btn-danger";
console.log("Gefunden:", item.getElementsByTagName("td")[0].innerText);
}
}catch(e){}
}
})();