MTurk Footer Fix

Removes MTurk footer on HIT pages.

  1. // ==UserScript==
  2. // @name MTurk Footer Fix
  3. // @namespace https://greasyfork.org/en/users/434272-realalexz
  4. // @version 0.2
  5. // @description Removes MTurk footer on HIT pages.
  6. // @author RealAlexZ
  7. // @icon https://i.imgur.com/NouzJ6b.jpg
  8. // @include https://worker.mturk.com/projects/*
  9. // @grant GM_addStyle
  10. // ==/UserScript==
  11.  
  12. // Thanks to @slothbear for the idea!
  13.  
  14. GM_addStyle(`.work-pipeline-bottom-bar, .sticky-footer { display: none; }`);