Mturk Dashboard Privacy

Hide sensitive areas of your mturk dashboard with a Ctrl-click.

目前為 2015-11-26 提交的版本,檢視 最新版本

// ==UserScript==
// @name  Mturk Dashboard Privacy
// @namespace  whatever
// @description Hide sensitive areas of your mturk 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
        }
  
  });
 
});