NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Indeed.com Hide Sponsored Jobs // @namespace https://openuserjs.org/users/WhaleProbe/ // @version 0.1 // @description Gets rid of sponsored links when doing job searches. // @author WhaleProbe // @match http://ca.indeed.com/jobs?q=* // @grant none // @include http://ca.indeed.com/jobs?q=* // @require http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js // ==/UserScript== /* jshint -W097 */ 'use strict'; $('[data-tn-component="sponsoredJob"]').toggle();