Anonymous Black Facebook Login Page

Update : Added a new CSS so that it works perfectly on most screen resolutions & the background shows its best when browser is resized..!! Give your Facebook login Page a Anonymous look..!! Looks pretty cool..!! Rate it..!! Connect with https://www.facebook.com/trickortips to stay updated..!! Google+ link http://www.goo.gl/GyJZB Follow me on twitter https://twitter.com/trickortips Also see :)

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          Anonymous Black Facebook Login Page
// @namespace     http://userstyles.org
// @description	  Update : Added a new CSS so that it works perfectly on most screen resolutions & the background shows its best when browser is resized..!! Give your Facebook login Page a Anonymous look..!! Looks pretty cool..!! Rate it..!! Connect with https://www.facebook.com/trickortips to stay updated..!! Google+ link http://www.goo.gl/GyJZB Follow me on twitter https://twitter.com/trickortips Also see :)
// @author        biswassudipta05
// @homepage      http://userstyles.org/styles/81939
// @include       https://www.facebook.com/*
// @include       https://www.facebook.com/
// @include       https://www.facebook.com/index.php?stype=lo*
// @include       https://www.facebook.com/index.php*
// @run-at        document-start
// @version 0.0.1.20150108212516
// ==/UserScript==
(function() {
var css = "body.fbIndex { \nbackground: url('http://i1369.photobucket.com/albums/ag231/Es_Doger_Pemda/trickortips_zps22788ab1.jpg')right center fixed !important; \n-webkit-background-size: cover; \n-moz-background-size: 100% !important; \nbackground-repeat: no-repeat !important;\nbackground-size: cover !important;\n}\n\n.loggedout_menubar_container { background: url('http://fiakka.com/images/blank_transparent.png') !important; }\n.fbIndex #globalContainer #dropmenu_container,\n.fbIndex #globalContainer #content,\n.fbIndex #globalContainer #pageFooter { display: none !important }\n\n\n.fbIndex .loggedout_menubar_container {\n  position: fixed !important;\n  width: 420px !important;\n  height: 82px !important;\n  min-width: 0 !important;\n  top: 50% !important;\n  left: 50% !important;\n  margin-top: -17px !important;\n  margin-left: -210px !important;\n  z-index: -1 !important;\n}\n\n\n.fbIndex .loggedout_menubar { width: auto !important }\n.fbIndex .loggedout_menubar_container .lfloat,\n.fbIndex .loggedout_menubar_container .rfloat { float: none !important }\n.fbIndex .loggedout_menubar_container .lfloat img,\n.fbIndex .loggedout_menubar_container .rfloat #login_form table { display: block !important; margin: 0 auto !important }\n\n.fbIndex .loggedout_menubar_container .lfloat img { display: block; margin: -60px auto 20px !important; }\n\n._5a-- { display: none !important }\n\n\n#SetAsHomepage_Callout {\n  display: none;\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 {
		// no head yet, stick it whereever
		document.documentElement.appendChild(node);
	}
}
})();