golem dark

Dieses Skript ist der einfache Versuch die golem.de Seite dark erscheinen zu lassen

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name     golem dark
// @description Dieses Skript ist der einfache Versuch die golem.de Seite dark erscheinen zu lassen
// @version  1.3
// @grant    none
// @match https://*.golem.de/*
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js
// @namespace https://greasyfork.org/users/233939
// ==/UserScript==
var bgcolor = '#333';
var txtcolor = '#ddd';
var txtcoloractive = '#fff'
var lnkcolor = '#e6e6dd';

$('body').css({'background-color' : bgcolor, 'color' : txtcolor});
$('header').css({'background-color' : bgcolor, 'color' : txtcolor})
$('a').css({'background-color' : bgcolor, 'color' : '#e6e6ff'});
$('h1').css({'background-color' : bgcolor, 'color' : txtcolor})
$('h2').css({'background-color' : bgcolor, 'color' : txtcolor})
$('h3').css({'background-color' : bgcolor, 'color' : txtcolor})
$('h4').css({'background-color' : bgcolor, 'color' : txtcolor})
$('.dh2').css({'background-color' : bgcolor, 'color' : txtcolor})
$('.dh3').css({'background-color' : bgcolor, 'color' : txtcolor})
$('p').css({'background-color' : bgcolor, 'color' : txtcolor})
$('.golem-flip-std').css({'background-color' : bgcolor, 'color' : txtcolor})
$('#grandwrapper').css({'background-color' : bgcolor, 'color' : txtcolor, 'border-color' : bgcolor})
$('#screen').css({'background-color' : bgcolor, 'color' : txtcolor})
$('footer').css({'background-color' : bgcolor, 'color' : txtcolor})
$('#gservices').css({'background-color' : bgcolor, 'color' : txtcolor})