Created
July 24, 2017 02:22
-
-
Save samtay/4f7abc1634713ae6fdf670a7cdd57d7f to your computer and use it in GitHub Desktop.
Better Indeed Results (filter sponsored)
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 Better Indeed | |
// @version 0.1 | |
// @description Ignores sponsored links | |
// @author samtay | |
// @match http*://www.indeed.com/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
console.log('ignoring sponsored links...'); | |
document.querySelectorAll('.sponsoredGray').forEach(function(el) { | |
el.closest('div.row').remove(); | |
}); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment