cleanHeise

Entfernt die Sidebar und andere Bereiche

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

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