Skip to content

Instantly share code, notes, and snippets.

@abhitalks
Last active January 24, 2018 21:20
Show Gist options
  • Save abhitalks/c3f52f02663938d6484d to your computer and use it in GitHub Desktop.
Save abhitalks/c3f52f02663938d6484d to your computer and use it in GitHub Desktop.
Hides Stack Overflow Jobs Ad
/** @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