Skip to content

Instantly share code, notes, and snippets.

@mattmc3
Last active November 18, 2019 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattmc3/701aee566b501724a76c6c9511a7bfcd to your computer and use it in GitHub Desktop.
Save mattmc3/701aee566b501724a76c6c9511a7bfcd to your computer and use it in GitHub Desktop.
Tampermonkey - my scripts
// ==UserScript==
// @name stackoverflow tampering
// @namespace http://tampermonkey.net/
// @version 0.1
// @description StackOverflow - hide #hot-network-questions and deleted stuff.
// @author mattmc3
// @grant none
// @require http://code.jquery.com/jquery-latest.js
// @match https://*.stackoverflow.com
// @match https://*.stackexchange.com
// ==/UserScript==
$(document).ready(function() {
$('#hot-network-questions').hide();
$('.answer.deleted-answer').hide();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment