Raw Source
ётка / Usable tj

// ==UserScript==
// @name          Usable tj
// @description   Remove social activity on tjournal
// @namespace     https://openuserjs.org/users/ётка
// @updateURL     https://openuserjs.org/meta/ётка/Getting_Started_with_a_User_Script.meta.js
// @downloadURL   https://openuserjs.org/install/ётка/Getting_Started_with_a_User_Script.user.js
// @copyright     2020, ётка (https://openuserjs.org/users/ётка)
// @license       MIT
// @version       1.0.0
// @match         https://tjournal.ru/*
// @grant         none
// ==/UserScript==

// ==OpenUserJS==
// @author ётка
// ==/OpenUserJS==

(function () {
  'use strict';
  document.body.onload = function () {
    let styleElement = document.createElement("style")
    styleElement.innerText = '.authorCard__description,.authorCard__karma,.content-header-author--user,.favorite_marker__count,.head-notifies,.l-mt-15,.layout__right-column,.plus-badge,.repost_button,.shares,.sidebar-tree-list > div:nth-child(3),.sidebar-tree-list > div:nth-child(4),.vote__value,.widget_wrappe,[class^="comment"],[class*="messenger"],.sidebar-tree-list > div:nth-child(2){display:none}.vote__button,div.content-footer__left > div:nth-child(1){margin-right:0 !important}[class^="quiz"]{display:block}'
    document.body.appendChild(styleElement)
  };
})();