Created
January 31, 2019 19:49
-
-
Save jrw254/b7fb20fbc4c831239c8370b483a2084d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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