Pikabu Down Comments

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==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();} //при уводе курсора с элемента
    
);
});