-
-
Save botmtl/9056edaf149579f0c9514adaac241c72 to your computer and use it in GitHub Desktop.
Hides Stack Overflow Jobs Ad
This file contains 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 | |
// ==/UserScript== | |
var style = document.createElement('style'); | |
style.type = 'text/css'; | |
style.textContent = | |
`#clc-tlb { display: none !important; } | |
#dfp-tlb { display: none !important; } | |
.community-bulletin { display: none !important; } | |
#newsletter-ad { display: none !important; }`; | |
document.body.appendChild(style); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment