// ==UserScript== // @name welt.de SocialBarGone // @namespace Violentmonkey Scripts // @match https://www.welt.de/politik/deutschland/plus255326852/Wegen-neuer-Migrationspolitik-Faekalien-auf-der-Fassade-Hausfriedensbrueche-Morddrohungen-Attacken-gegen-CDU-eskalieren.html* // @grant none // @version 1.0 // @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);