Skip to content

Instantly share code, notes, and snippets.

@lydonchandra
Forked from Tiny-Giant/HideJobs.user.js
Last active May 29, 2019 03:04
Show Gist options
  • Save lydonchandra/1c8624398ee96e1e5cd7b5b6ed71ed9f to your computer and use it in GitHub Desktop.
Save lydonchandra/1c8624398ee96e1e5cd7b5b6ed71ed9f 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,',
'#hot-network-questions,'
'.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