// ==UserScript== // @name welt.de SocialBarGone // @namespace Violentmonkey Scripts // @match https://www.welt.de/* // @grant none // @version 1.1 // @author - // @license MIT // @description 4.2.2025, 22:11:54 // @downloadURL none // ==/UserScript== const style = document.createElement('style'); style.textContent = "[data-component='SocialBar'] { display: none !important; }"; document.head.appendChild(style);