Usuwanie niebieskich

usuwa niebieskich z wykopu

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name       Usuwanie niebieskich
// @namespace  http://www.wykop.pl/*
// @version    1.3
// @description usuwa niebieskich z wykopu
// @include     *://www.wykop.pl/*
// @exclude      *://www.wykop.pl/cdn/*
// @copyright  Arkatch
// @grant none
// ==/UserScript==
(function(){
$("img.lazy").each(function(){$(this).attr("src",$(this).data("original"));});
try{
var MORE = document.getElementsByClassName('more');
for(var i = 0, len = MORE.length; i < len; i++) {
    MORE[i].onclick = function(){setTimeout(PAS, 1000);setTimeout(PAS, 4000);};
}}catch(e){
return;
}
})();
(function(){
try{
document.getElementById('newEntriesCounter').onclick = function(){setTimeout(PAS, 1000);setTimeout(PAS, 4000);};
}catch(e){
return;
}
})();
PAS();
function PAS(){
	var PASEK = document.getElementsByClassName('avatar male lazy');
	for(var i = 0;i<PASEK.length;i++){
		PASEK[i].closest('li').style.display = "none";
    }
}