Is this what you need, or is this what isn't working?
// ==UserScript==
//
@Name mturk footer hide
// @description shaddap
// @version 1.0
// @author Barbwire
// @namespace shaddap
// @icon
https://cdn.mturkcrowd.com/data/avatars/l/0/236.jpg
// @include *
// @require
http://code.jquery.com/jquery-3.3.1.min.js
// ==/UserScript==
if (~location.toString().indexOf("
https://worker.mturk.com/projects/")){
let footer = document.getElementsByTagName("footer")[0];
let reportbuttons = $(`div.work-pipeline-bottom-bar`);
reportbuttons.hide()
if (typeof footer !== 'undefined'){
//footer.parentNode.removeChild(footer);
footer.style.display = `none`;
}
}