Skip to content

Instantly share code, notes, and snippets.

@seandlg
Created December 6, 2022 07:51
Show Gist options
  • Save seandlg/7a20bcfc1c5ccdc1f608b58bf9b8ef77 to your computer and use it in GitHub Desktop.
Save seandlg/7a20bcfc1c5ccdc1f608b58bf9b8ef77 to your computer and use it in GitHub Desktop.
Improved reading experience on heise.de
// ==UserScript==
// @name heise.de improved reading experience
// @namespace Violentmonkey Scripts
// @match https://www.heise.de/*
// @grant none
// @version 1.0
// @author -
// @description 12/5/2022, 7:15:22 PM
// ==/UserScript==
document.getElementById("bottom-up").style.maxWidth = "100rem"
document.querySelector(".article-layout__content-container").style.width = "80rem"
document.querySelector(".article-layout__content").style.maxWidth = "100%"
document.querySelector(".article-sidebar").style.display = "none"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment