cleanHeise

Entfernt die Sidebar und andere Bereiche

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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          cleanHeise
// @namespace     Vorticon 
// @author        twuertele, edited by commander_keen
// @version       0.3.2
// @description   Entfernt die Sidebar und andere Bereiche
// @include       https://*.heise.de/*
// @grant GM_addStyle
// ==/UserScript==

(function(){
	GM_addStyle("#mitte #mitte_rechts { display: none; min-height: 0;}");
  GM_addStyle("#mitte #mitte_links { width: 100%; min-height: 0; }");
	GM_addStyle("#sitemap { display: none; }");
	GM_addStyle("#social_bookmarks { display: none; }");
	GM_addStyle(".related_items { display: none; }");
	GM_addStyle("#navi_top_container { display: none; }");
	GM_addStyle("#bannerzone { display: none; }");
	GM_addStyle("#container_content { top: 0; }");
	GM_addStyle("#login_suche { display: none; }");
	GM_addStyle("#navigation { display: none; }");
	GM_addStyle("#breadcrumb { display: none; }");
	GM_addStyle("p.themenseiten { display: none; }");
	GM_addStyle("p.news_option { display: none; }");
	GM_addStyle("p.news_navi { display: none; }");
	GM_addStyle("p.permalink { display: none; }");
	GM_addStyle("#navi_bottom { display: none; }");
  GM_addStyle("#logo_bereich { display: none; }");
  GM_addStyle("#themen_aktuell { display: none; }");
  GM_addStyle(".meldungsliste_zum_thema { display: none; }");
  // for a wider, alternative font, uncomment the following line
	//GM_addStyle("#mitte_news p { font-size: 16px; color: #222; line-height: 24px; font-family: 'Droid Serif', georgia, serif; }");
})();