Modern Black

A modern black style for HackForums.

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 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.

(У мене вже є менеджер скриптів, дайте мені встановити його!)

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          Modern Black
// @namespace     http://userstyles.org
// @description	  A modern black style for HackForums.
// @author        M0HX
// @homepage      https://userstyles.org/styles/
// @include       http://hackforums.net/*
// @include       https://hackforums.net/*
// @include       http://*.hackforums.net/*
// @include       https://*.hackforums.net/*

// @version       1.0
// ==/UserScript==
(function() {var css = [

    "body {",
	"    background: #072948 url(https://i.imgur.com/VhIHTd3.png) fixed;",
	"}",
	"#content {",
	"    background: none",
	"}",
    "#logo {",
	"    background: none",
	"}",


].join("\n");


if (typeof GM_addStyle != "undefined") {
	GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
	PRO_addStyle(css);
} else if (typeof addStyle != "undefined") {
	addStyle(css);
} else {
	var node = document.createElement("style");
	node.type = "text/css";
	node.appendChild(document.createTextNode(css));
	var heads = document.getElementsByTagName("head");

	if (heads.length > 0) {
		heads[0].appendChild(node);
	} else {
		document.documentElement.appendChild(node);
	}


}
})();