Quojob Verbesserungen

Quojob-Verbesserungen die dringend nötig sind

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name            Quojob Verbesserungen
// @description     Quojob-Verbesserungen die dringend nötig sind
// @author          navchandar
// @include         https://*quojob.de/*
// @include         *quojob.de/*
// @version         0.1
// @run-at          document-start
// @license         MIT
// @homepage        https://werk3.de Thomas Sperling
// @setupURL        https://quojob.werk3.dev/quojob.user.js
// @icon            https://werk3.quojob.de/favicon.ico
// @grant           GM_addStyle
// @namespace https://greasyfork.org/users/743802
// ==/UserScript==


(function() {
    'use strict';

    var css = document.createElement('style');
    css.type = "text/css";
    css.innerHTML = "/*Startscreeen hübscher*/body{background-size: cover;}\
    /*Kalenderelemente passen in die Ansicht*/.cockpit-calendar table.grid_controls tr td{padding-top: 8px;}";

    //$("div[id^='cockpit_calendar_cd']").addClass('cockpit-calendar');
    setTimeout(function() {
  // Code, der erst nach 2 Sekunden ausgeführt wird
    var cal =document.querySelectorAll("div[id^='cockpit_calendar_cd']")[0];
if (cal) {
    cal.parentNode.classList.add('cockpit-calendar');
}
    }, 1000);

    document.getElementsByTagName('head')[0].appendChild(css);
})();