pikabu: Watch Later

Позволяет складывать загружающиеся гифки в сторону, чтобы потом не возвращаться к ним

// ==UserScript==
// @id             pikabuWatchLater
// @name           pikabu: Watch Later
// @version        1.1
// @namespace      https://gf.qytechs.cn/users/23
// @author         jitb@pikabu
// @description    Позволяет складывать загружающиеся гифки в сторону, чтобы потом не возвращаться к ним
// @include        http://pikabu.ru/*
// @run-at         document-end
// ==/UserScript==

$ = unsafeWindow.$;

queue = $('<div style="position: fixed; right:0; bottom:0; max-height: 100%; overflow: auto; z-index:101;"></div>');
$('body').append(queue);

function createLinks() {
	$('.main .watchlater').remove();
	$('.main .gifPrev, .main .gifPrev img[src$="gif"]').after("<a class='watchlater' href='javascript:void(0)'>>><br/></a>");
	$('.main .watchlater').click(function(){
		queue.append($(this).parent());
		queue.animate({"scrollTop":999999},1000);
		$(this).text('X').css({'color': 'red',
								'font-weight': 'bold',
								'position': 'absolute',
								'right': 0,
								'z-index': 102
		}).click(function(){
			$(this).parent().remove();
		});
	});
}

$(document).ajaxComplete(createLinks);

$('.sv_img.showpic').click(function() {
	setTimeout(createLinks,1000);
});
createLinks();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址