Pikabu Down Comments

Добавляет кнопку -Комментарии- к концу поста

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Pikabu Down Comments
// @namespace    http://umnik.one/
// @version      0.3
// @description  Добавляет кнопку -Комментарии- к концу поста
// @author       UmnikOne
// @match        http://pikabu.ru/*
// @excludes      http://pikabu.ru/add
// @excludes      http://pikabu.ru/freshitems.php
// @excludes      http://pikabu.ru/story/*
// @grant        none
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==

$(document).ready(function() {
$(".story").hover(
    
	function () { $(this).addClass("active");  var link = $(".story.active [target='_blank']:first");  $('.story__footer').append('<div id="test2"><div class="story__slide-up"><a href="'+link[0]+'#comments" target="_blank"  style="color: #a0a0a0; text-decoration:none;">комментарии</a></div></div>'); },   //при наведении курсора на элемент
	function () { $(this).removeClass("active");  $("div#test2").remove();} //при уводе курсора с элемента
    
);
});