Меня лично дико раздражали сайдбары на этом сайте, потому что занимали место, и отвлекали от чтения основной ленты. Поэтому я их выпилил через plugin для Chrome ViolentMonkey (GraseMonkey)
Все просто. Ставите
Plugin ViolentMonkey, копируете скрипт, и видите обычную ленту сообщений, без сайдбаров. Типа такого
https://prnt.sc/saz58q
Скрипт будет лежать тут:
https://github.com/serg-smirnoff/smart-lab-fix-layout/blob/master/smart-lab-fix-layout.js
// ==UserScript==
// @name New script - smart-lab.ru
// @namespace Violentmonkey Scripts
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js
// @match https://smart-lab.ru/*
// @grant none
// @version 1.0
// @author -
// @description 05.05.2020, 00:24:10
// ==/UserScript==
$(document).ready(function(){
$('.sidebar_left, .sidebar_right, #inindex, .content_desc, #mood, .console').hide();
$('#content').css('width','100%');
$('#content_box').css({"width":"70%", "margin-left": "auto", "margin-right": "auto", "float": "unset"});
$('#header .h1 a').css({"font-size": "29px", "line-height": "32px"});<br /> $('.topic .content img').css('width','98%');
})