Last active
April 3, 2020 12:32
-
-
Save Tiny-Giant/1174d2405f70f4783eb6 to your computer and use it in GitHub Desktop.
Hides references to Stack Overflow Jobs
This file contains hidden or 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
// ==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); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey there, I added
'#hireme,'.
to my version.