Leniwy Mirek

Wyświetlanie liczby słów ukrytej treści na mikroblogu.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Leniwy Mirek
// @namespace    leniwymirek
// @version      0.1
// @description  Wyświetlanie liczby słów ukrytej treści na mikroblogu.
// @author       zranoI
// @include      /^https?:\/\/.*wykop\.pl\/mikroblog.*/
// @grant        none
// ==/UserScript==

$(document).ready(function() {
    $('.entry.iC > .dC > div > .text').each(function() {
        var hidden = $(this).find('.text-expanded.dnone');
        if (hidden.length === 0) {
            return true;
        }
        $(this).find('.show-more').append(' (' + hidden.text().split(' ').length + ' słów)');
    });
});