Greasy Fork

Boredpanda Articles Nice&Clean

Boredpanda without distractions

目前为 2021-08-19 提交的版本。查看 最新版本

// ==UserScript==
// @name         Boredpanda Articles Nice&Clean
// @namespace    http://tampermonkey.net/
// @version      0.2
// @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
// ==/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',
    ];
    $.each(elements, function(i,e){
        $(e).remove();
    });
    $('div.left-content-column').css('margin-right',0);
});