NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name pc.sk Dark theme // @namespace pretaktovanie.sk // @version 1.1 // @description Tmava tema pre forum // @author moped // @copyright 2019, moped (https://openuserjs.org/users/moped) // @license MIT // @run-at document-start // @match https://pretaktovanie.zoznam.sk/* // @icon https://pretaktovanie.zoznam.sk/favicon.ico // ==/UserScript== (function () { 'use strict'; var head, style; head = document.getElementsByTagName('head')[0]; if (!head) { return; } style = document.createElement("link"); style.setAttribute("href", "https://pretaktovanie.zoznam.sk/ext/pcsk/pretaktovanie/styles/prosilver/theme/darktheme.css"); style.setAttribute("rel", "stylesheet"); head.appendChild(style); })();