Унбибий, 
 
(function() {
            function containsAll(sel, str) {
                [...document.querySelectorAll(sel)].filter(({
                    textContent
                }) => textContent.includes(str)).map(el => el.closest('div[id]')).forEach(div => div.remove())
            }
            containsAll('a', 'Установит');
            containsAll('a', 'Браузер');
            containsAll('[rel="noopener"]', 'Да');
            document.querySelector("div.feed._column-count_2").replaceWith(document.querySelector("#zen-row-0"));
        })()
	 |