Hide sensitive areas of your dashboard with a Ctrl-click.
目前為
// ==UserScript==
// @name Dashboard Privacy
// @namespace whatever
// @description Hide sensitive areas of your dashboard with a Ctrl-click.
// @include https://www.mturk.com/mturk/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// @version 1
// @grant none
// @author limcid
// ==/UserScript==
$(document).ready(function () {
$("body").click(function(e) {
if (e.ctrlKey) {
// elements to hide
$("td.container-content").slice(0,3).toggle(); // Total Earnings, Your HIT Status
$("#expandedHeader").toggle(); // Transfer Balance on all mturk pages
}
});
});