Удаляет посты из сообществ, попавшие в Горячее.
当前为
// ==UserScript==
// @name Remove Communities from Hot [Pikabu]
// @version 0.1
// @description Удаляет посты из сообществ, попавшие в Горячее.
// @author Neur0toxine
// @license WTFPL
// @include *//pikabu.ru/
// @include *//pikabu.ru/hot
// @grant none
// @namespace https://greasyfork.org/users/12790
// ==/UserScript==
(function() {
'use strict';
function remove_posts_by_communities_tag() {$('a[href^="/community"]').closest('.story').remove();}
window.onload = function(){$(document).ajaxComplete(remove_posts_by_communities_tag);remove_posts_by_communities_tag();};
})();