Skip to content

Instantly share code, notes, and snippets.

@rjrudman
Forked from Tiny-Giant/HideJobs.user.js
Last active December 22, 2016 23:12
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 rjrudman/a472924d3fb078bd73bb12066e0319a0 to your computer and use it in GitHub Desktop.
Save rjrudman/a472924d3fb078bd73bb12066e0319a0 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,',
'#hireme,',
'a[href^="/jobs"],',
'.careers-link,',
'.cv-connect,',
'.search-status {',
' 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