NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name T3N // @namespace http://t3n.de/ // @version 0.1 // @description Clearing for OneNote // @author Steven Spyrka // @match http://*/* // @grant none // @include *t3n.de* // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js // ==/UserScript== // alert("hello world"); //Avoid conflicts this.$ = this.jQuery = jQuery.noConflict(true); $(document).ready(function() { $('.c-header').hide(); $('.u-text-category').hide(); $('.c-adblock').hide(); $('.c-social').hide(); $('aside').hide(); $('.u-gap-top-large').hide(); $('.c-stage').hide(); $('.c-footer').hide(); $('.o-grid__main').width('100rem'); });