Убираем плашку "XX комментариев" в постах и открываем все комментарии

Ставим юзерскрипт и наслаждаемся (с).

Убираем плашку "XX комментариев" в постах и открываем все комментарии

Инструкция

// ==UserScript== // @name Показывает все комментарии в постах // @namespace http://tampermonkey.net/ // @version 0.2 // @description Убирает в постах плашку XXX комментариев и делает видимыми все комментарии // @icon https://www.google.com/s2/favicons?sz=64&domain=dtf.ru // @author Alexwebman // @license MIT // @match https://dtf.ru/* // @match https://vc.ru/* // @grant none // @run-at document-start // ==/UserScript== (function () { setInterval(function() { if (document.querySelector('.comments__content_wrapper') !== null) { if (document.querySelector('.comments__content_wrapper.comments__content_wrapper--open') === null) { document.querySelector('.comments__content_wrapper').className += " comments__content_wrapper--open"; } } }, 100); })();
  • Сохраняем скрипт
1.4K1.4K показов
580580 открытий
11 репост
18 комментариев