cleanHeise

Entfernt die Sidebar und andere Bereiche

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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; }");
})();