Warning: fopen(/www/sites/update.greasyfork.icu/index/store/temp/0e193dafd78183c60f51422fcae0cbff.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript== // @name MTC Poll Hider // @version 1.0 // @include http://www.mturkcrowd.com/* // @include https://www.mturkcrowd.com/* // @description Hide and toggle polls on MTurk Crowd. // @namespace https://greasyfork.org/users/11205 // @downloadURL https://update.greasyfork.icu/scripts/32404/MTC%20Poll%20Hider.user.js // @updateURL https://update.greasyfork.icu/scripts/32404/MTC%20Poll%20Hider.meta.js // ==/UserScript== $(".PollContainer").before(''); $(".PollContainer").hide(); // Toggles instructions and changes toggle text. $('#toggle').click(function() { $(".PollContainer").toggle(); $('#toggle').text() == 'Show Poll' ? str = 'Hide Poll' : str = 'Show Poll'; $('#toggle span').html(str); });