itsastickup / Freelancer - remove no-rating offers

// ==UserScript==
// @name         Freelancer - remove no-rating offers
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Avoid project offers from new employers in the search results
// @author       Mr Public Domain
// @match        https://www.freelancer.com/*
// @match        https://freelancer.com/*
// @grant        none
// @license MIT
// @require      http://code.jquery.com/jquery-3.3.1.slim.min.js#sha384=q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo
// ==/UserScript==

(function() {
    'use strict';
    var strs=["No jobs completed yet"];//add more strings here to customize
    var s;
    var obj;
    setInterval(function(){
        $('div.search-result-item').each(function(){
            obj=this
            strs.forEach(function(e){
                s=$(obj).text();
                if($(obj).text().includes(e)){
                    $(obj).remove();
                }
            });
        })
    },1000);
})();