NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Keep Mturk Autoaccept Box Checked // @namespace Keep Autoaccept Box Checked // @version 1.0.1 // @description Keeps the autoaccept box always checked while working on hits on mturk. // @include https://www.mturk.com/mturk/* // ==/UserScript== var checkboxes = document.getElementsByName('autoAcceptEnabled'); for (var i = 0; i < checkboxes.length; i++) { checkboxes[i].checked=true; }