Greasy Fork

Greasy Fork is available in English.

web.de - Login only v0.78 mod

Blendet alles von der web.de-Startseite aus und zeigt nur noch den Login an.

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name          web.de - Login only v0.78 mod
// @namespace     http://userstyles.org
// @description	  Blendet alles von der web.de-Startseite aus und zeigt nur noch den Login an.
// @author        gotU / modded by r_Evolution
// @homepage      https://userstyles.org/styles/171491/
// @include       http://web.de/fm
// @include       https://web.de/fm
// @include       http://web.de/fm?status=login-failed
// @include       https://web.de/fm?status=login-failed
// @include       http://web.de/
// @include       https://web.de/
// @include       http://www.web.de/fm
// @include       https://www.web.de/fm
// @include       http://www.web.de/fm?status=login-failed
// @include       https://www.web.de/fm?status=login-failed
// @include       http://www.web.de/
// @include       https://www.web.de/
// @run-at        document-start
// @version       0.20190709
// ==/UserScript==
(function() {var css = [
	"@namespace url(http://www.w3.org/1999/xhtml);",
	"A[href=\"https://produkte.web.de/freemail-webmail/[email protected]@freemail\"],",
	"A[href=\"https://spenden.web.de\"],",
	"#footer,",
	"#footer-sep-line,",
	"#header,",
	"#helplinks,",
	"#loginsearch-ad,",
	"#mainnav,",
	"#omsFirst,",
	"#promoline,",
	"#rectangle-fallbackContent,",
	"#sepResp0,",
	"#sepResp1,",
	"#sepResp2,",
	".ad,",
	".boxContentModuleContent .promo,",
	".hasIcon.icon-club,",
	".hasIcon.icon-demail,",
	".hasIcon.icon-domain,",
	".hasIcon.icon-search,",
	".module-group,",
	".netID-container,",
	".news-spotlight.order,",
	".r1,",
	".service.icons.order,",
	".service.top-search.order,",
	".service.top-article.order,",
	".service.horoscope.order,",
	".service.millionenklick.order,",
	".service.finanzen.order,",
	".service.icons.order,",
	".service.top-article,",
	".statistics,",
	".teaser.news.multi-news,",
	".teaser.news.multi-news.hero,",
	".teaser.news.multi-news.order,",
	".teaser.news.multi-news.order,",
	".topnews,",
	".wrapper-center,",
	".wrapper-themed",
	"{",
	"display:none !important;",
	"}",
	"",
	".wrapper-center.first",
	"{",
	"display:block !important;",
	"width:53em !important;",
	"}",
	"",
	"#loginsearch",
	"{",
	"margin-top:3em !important;",
	"width:53em !important;",
	"}",
	"",
	"#content",
	"{",
	"margin:auto !important;",
	"}",
	"",
	"body, body::before",
	"{",
	"border-top:0 !important;",
	"border-bottom:0 !important;",
	"min-width:auto !important;",
	"}"
].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 {
		// no head yet, stick it whereever
		document.documentElement.appendChild(node);
	}
}
})();