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 (remove rubish)
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @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);
})();