// ==UserScript== // @name Boredpanda Articles Nice&Clean // @namespace http://tampermonkey.net/ // @version 0.3 // @description Boredpanda without distractions // @author Olli // @match https://www.boredpanda.com/* // @icon https://www.boredpanda.com/favicon.ico // @grant none // @require https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js // @downloadURL none // ==/UserScript== $(document).ready(function() { var elements = [ 'aside.sidebar', 'div.post-bottom-recommendation-block', 'div.post-tags-container', 'div.open-list-recommendations', 'div.open-list-block-footer', 'p.post-footer', 'div.open-list-comments', 'div.open-list-footer', 'div#sharebar', 'footer.footer', ]; $.each(elements, function(i,e){ $(e).remove(); }); $('div.left-content-column').css('margin-right',0); $('section.posts').css('margin-right',0); });