This may help...
Code:
// ==UserScript==
// @name
Temp fix for mturk footer problem
// @version
0.1
// @description
hide the footer stuff...hope you don't like to report HITs...
// @author
slothbear
// @include
https://worker.mturk.com/projects/*
// ==/UserScript==
const workPipelineBottomBar = document.getElementsByClassName('work-pipeline-bottom-bar')[0];
const stickyFooter = document.getElementsByClassName('sticky-footer')[0];
function hideThings() {
workPipelineBottomBar.style.display = "none";
stickyFooter.style.display = "none"
}
(function main() {
if (workPipelineBottomBar) return hideThings();
return false;
})();