Skip to content

Instantly share code, notes, and snippets.

@jrw254
Created January 31, 2019 19:49
Show Gist options
  • Select an option

  • Save jrw254/b7fb20fbc4c831239c8370b483a2084d to your computer and use it in GitHub Desktop.

Select an option

Save jrw254/b7fb20fbc4c831239c8370b483a2084d to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Hide Dash Shit MTurk
// @namespace jrw254 (sabedth)
// @version 1.0
// @description Hide things on the dash. For the shy type.
// @author jrw254 (sabedth)
// @match https://worker.mturk.com/dashboard*
// @grant none
// ==/UserScript==
$(document).ready(function() {
$("#dashboard-earnings-to-date").hide();
$("#dashboard-total-earnings-by-period").hide();
$("#dashboard-hits-overview").hide();
$(".row.h4.text-muted.m-b-0.p-y-sm").hide();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment