Skip to content

Instantly share code, notes, and snippets.

@samtay
Created July 24, 2017 02:22
Show Gist options
  • Save samtay/4f7abc1634713ae6fdf670a7cdd57d7f to your computer and use it in GitHub Desktop.
Save samtay/4f7abc1634713ae6fdf670a7cdd57d7f to your computer and use it in GitHub Desktop.
Better Indeed Results (filter sponsored)
// ==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