Last active
January 24, 2018 21:20
-
-
Save abhitalks/c3f52f02663938d6484d 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
/** @preserve | |
// ==UserScript== | |
// @name Abhitalks - SO Hide Jobs Ad | |
// @namespace http://github.com/abhitalks | |
// @version 1.1 | |
// @description Hides Stack Overflow Jobs Ad | |
// @author @Abhitalks | |
// @match http://*.stackoverflow.com/* | |
// @match https://*.stackoverflow.com/* | |
// ==/UserScript== | |
*/ | |
var style = document.createElement('style'); | |
style.type = 'text/css'; | |
style.textContent = [ | |
'#hireme { ', | |
' display: none !important;', | |
'}' | |
].join('\n'); | |
document.body.appendChild(style); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment