Skip to content

Instantly share code, notes, and snippets.

@botmtl
botmtl / StackOverflow.user.js
Last active April 9, 2018 16:28 — forked from abhitalks/so-hide-jobs.user.js
Hides Stack Overflow Jobs Ad
// ==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
@botmtl
botmtl / vk.js
Last active July 8, 2018 06:41 — forked from mir4a/vk.js
Quickly remove all -deactivated - friends from VK
// 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();
});