Are you sure you want to go to an external site to donate a monetary value?
WARNING: Some countries laws may supersede the payment processors policy such as the GDPR and PayPal. While it is highly appreciated to donate, please check with your countries privacy and identity laws regarding privacy of information first. Use at your utmost discretion.
Please maintain or replace. I will create a new one if this isn't fixed in the next couple weeks.
Re: @ajsnyde:
I've created a new userscript that works:
// ==UserScript== // @name Kill Indeed Sponsored // @namespace http://tampermonkey.net/ // @version 0.1 // @description rids Sponsored jobs from indeed.com job searches // @author Dreadhawk // @match https://www.indeed.com/jobs* // ==/UserScript== (function() { 'use strict'; var x = document.getElementsByClassName("row sjlast result"); x[0].parentElement.parentElement.removeChild(x[0].parentElement); x = document.getElementsByClassName("row sjlast result"); x[0].parentElement.parentElement.removeChild(x[0].parentElement); // Your code here... })();