Skip to content

Instantly share code, notes, and snippets.

@Tiny-Giant
Last active April 3, 2020 12:32
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save Tiny-Giant/1174d2405f70f4783eb6 to your computer and use it in GitHub Desktop.
Save Tiny-Giant/1174d2405f70f4783eb6 to your computer and use it in GitHub Desktop.
Hides references to Stack Overflow Jobs
// ==UserScript==
// @name Hide Jobs
// @namespace http://github.com/Tiny-Giant
// @version 1.0.0.1
// @description Hides references to Stack Overflow Jobs
// @author @TinyGiant
// @include /https?:\/\/(meta\.)?stackoverflow\.com/.*/
// @grant none
// ==/UserScript==
/* jshint -W097 */
'use strict';
var style = document.createElement('style');
style.type = 'text/css';
style.textContent = [
'#nav-jobs,',
'a[href^="/jobs"],',
'.careers-link,',
'.cv-connect,',
'.search-status {',
' display: none !important;',
'}'
].join('\n');
document.body.appendChild(style);
@l-wagner
Copy link

l-wagner commented Feb 20, 2019

Hey there, I added '#hireme,'. to my version.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment