NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Tagesschau Oldschool-Readable
// @namespace http://tampermonkey.net/
// @version 0.1
// @copyright 2021+, Chris Rowing (https://openuserjs.org/users/chriszichrisz)
// @license CC-BY-NC-SA-4.0; https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode
// @license GPL-3.0-or-later; http://www.gnu.org/licenses/gpl-3.0.txt
// @description The relaunch of tagesschau.de on 26/01/2021 made it impossible to read articles without getting a serious headache. This script makes it readable again. It is a work in progress.
// @author chriszichrisz
// @match https://www.tagesschau.de/
// @resource THE_CSS http://www.kjsd987327jf.com/tagesschau.css
// @grant GM_addStyle
// @grant GM_getResourceText
// ==/UserScript==
(function() {
'use strict';
var cssTxt = GM_getResourceText("THE_CSS");
GM_addStyle (cssTxt);
//GM_addStyle("body {background: url(https://www.tagesschau.de/resources/framework/img/tagesschau/background/base.jpg)}");
//GM_addStyle("div.teaser__media { width: 250px; }");
})();