time.is/just dark

A little darkness in time for time.is...

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey 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.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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         time.is/just dark
// @namespace    none
// @version      2020.09.09.14.31
// @description  A little darkness in time for time.is...
// @author       Technical-13
// @match        https://time.is/clock
// @match        https://time.is/just
// @grant        none
// ==/UserScript==

( function() {
    'use strict';

    var styleSheet = document.createElement( 'style' );
    var newStyle = 'body { background-color: #000000; }';
    newStyle += 'body, select, input, textarea { color: #555555; }';
    newStyle += 'div#mainwrapper { background-color: #000000; }';
    newStyle += '#clock0_bg:hover { color: #AAAAAA; }';
    styleSheet.append( newStyle );
    document.getElementsByTagName( 'head' )[ 0 ].append( styleSheet );
    document.getElementById( 'top' ).style.display = 'none';
} )();