NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Spiegel Online - Center Content // @namespace http://tampermonkey.net/ // @version 1.0 // @description centers main page content and removes the other rubish from the body // @author You // @match http://www.spiegel.de/* // @require https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js // ==/UserScript== (function() { 'use strict'; var $wrapper = jQuery('#wrapper-content'); $wrapper.detach(); $wrapper.css('margin', '0 auto'); jQuery('body').empty(); jQuery('body').append($wrapper); })();