This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Stackoverflow Hide Annoying Stuff | |
// @namespace http://gist.github.com/botmtl | |
// @version 1.2 | |
// @description Stack Overflow Annoying Stuff | |
// @downloadURL https://gist.github.com/botmtl/9056edaf149579f0c9514adaac241c72/raw/4024fc85fb21ddfd377deca1ab110fbde4f44385/StackOverflow.user.js | |
// @author @botmtl | |
// @match http://*.stackoverflow.com/* | |
// @match https://*.stackoverflow.com/* | |
// @icon https://cdn.sstatic.net/Sites/stackoverflow/img/favicon.ico |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Run from console on developers tools (chrome dev tools) | |
// Go to friends page from your profile and open console F12 or alt+cmd+I | |
Array.from(document.querySelectorAll('[src*="images/deactivated_100"]')).forEach(function(e){ | |
e.parentNode.parentNode.nextElementSibling.querySelector("a[onclick*='delete']").onclick(); | |
}); |
OlderNewer