Grouter / DarkTuring

// ==UserScript==
// @name         DarkTuring
// @version      0.1
// @description  Welcome to the Dark Turing!
// @license      GPL-3.0-or-later; http://www.gnu.org/licenses/gpl-3.0.txt
// @match        http://93.184.70.44:4001/*
// @match        https://www.turing.sk/fiit/zprpr2/*
// @match        https://www.turing.sk/fiit/semap1/*
// ==/UserScript==

// ==OpenUserJS==
// @author Grouter
// ==/OpenUserJS==

<script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"></script>

window.onload = function() {
    monaco.editor.setTheme('vs-dark');
    
    ("code").each(function(index) {
        console.log($('this'));
    });
};