Remove related pins

Make the new "Related Pins" disappear from your Pinterest feed.

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 or Violentmonkey 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        Remove related pins
// @author      Mark Cervarich
// @namespace   http://markcerv.com
// @description Make the new "Related Pins" disappear from your Pinterest feed.
// @include     http://www.pinterest.com/*
// @match       http://www.pinterest.com/*
// @version     2013-11-18
// @copyright	2013+, Mark Cervarich
// @run-at      document-end
// @grant       none
// ==/UserScript==

// User editable variable
//
var repeat_every_x_seconds = 5;


// -- Please do not modify anything below here --
//
var total_removed = 0;

function hide_related_pins() {
    var num_related_found = $('.recommendationReasonWrapper').parent('.pinWrapper').length;
    $('.recommendationReasonWrapper').parent('.pinWrapper').remove();
    total_removed = num_related_found + total_removed;
    $('#KillRelated span').replaceWith("<span>related pins removed [<font color='red'>" + total_removed + "</font>]</span>");

}

function create_counter_div() {
    $('div.headerContainer div a#logo').after("<div id='KillRelated'><span>...</span></div>");
    $('#KillRelated').css({"left": "50%", "margin-left": "60px", "margin-top": "16px", "position": "absolute", "top": "-2px"});
}

// at load time
create_counter_div();
//hide_related_pins();

window.setInterval(function(){
  hide_related_pins();
}, (repeat_every_x_seconds * 1000));