Greasy Fork is available in English.

Widget Enabler

Prosty skrypt, ktry zamienia linki do wpisow na widoczne widgety tych wpisow.

Від 23.02.2016. Дивіться остання версія.

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.

(У мене вже є менеджер скриптів, дайте мені встановити його!)

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            Widget Enabler
// @namespace       widgetenabler
// @description     Prosty skrypt, ktry zamienia linki do wpisow na widoczne widgety tych wpisow.
// @include         http://*.wykop.pl/*
// @version         1.1
// ==/UserScript==

setInterval(function(){
	if($('.wblock.dC div.text').find('a[href*="wykop.pl/wpis/"]').length < 10) {
		$('.wblock.dC div.text').find('a[href*="wykop.pl/wpis/"]').each(function(){
			var href = $(this).attr('href'),
				href = href.replace("http://", ""),
				href = href.replace("https://", ""),
				href = href.replace("www.", ""),
				href = href.replace("wykop.pl/", ""),
				href = href.replace("wpis/", ""),
				entryNumber = href.split("/"),
				entryNumber = entryNumber[0];
				iframeURL = '<iframe src="http://www.wykop.pl/widget/entry/'+entryNumber+'/" style="width:100%; padding: 20px; border-radius:5px;"></iframe>';
			$(iframeURL).insertAfter(this);
			$(this).remove();
		});
	}
}, 1000);