NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Szoc rendszer segítség // @namespace http://tampermonkey.net/ // @version 1.1 // @description A "nehezebb" pályázóknál zöld hátteret állít. // @author IceCube018 // @include http://*szoc.sc.bme.hu/igenyles-admin* // @include https://szoc.sc.bme.hu/igenyles-admin* // @grant none // @run-at document-ready // ==/UserScript== var feketeLista = ["yd0rsv","w5rdku","ollnid","z1lxwm","a59jkb","cm81d5", "qwn73n","jhlu3c","kz6934","gp75gn","gfdcgm","y9pmlh","cbmrfm","bd49s3","mswomg","g4frp7", "aecere","nchmtq","jdm59f","nnezsv","b2w5d2","cdnwex","ikxq2a","sorwjb","a1prl6","xu8fyd", "d3rxms","ccb3q5","yxxoik","nipk77","a9fbi6","hx6kpk","c32nw2","crllry","d7y1h0","uujw4y", "s25978","n5f24w","uoo1x4","b5pr7p","a3zwaa","artkwi","abqu2d","gokqct","vk1tco","p3viy3"]; (function() { var adatok = document.getElementsByClassName("eszr-palyazo-adatai-text"); for (var i = 0; i < adatok.length; i++) { var adat = adatok[i].innerText; for (var k = 0; k < feketeLista.length; k++) { if(feketeLista[k] == adat){ document.getElementById("content").style.backgroundColor = "rgb(00,256,00)"; } } } })();