OCMP Extract Multiple Dividends

Expand the work area and site boxes

  1. // ==UserScript==
  2. // @name OCMP Extract Multiple Dividends
  3. // @description Expand the work area and site boxes
  4. // @version 0.1
  5. // @include https://mi-div.crowdcomputingsystems.com/mturk-web*
  6. // @author Cristo
  7. // @copyright 2012+, You
  8. // @namespace https://greasyfork.org/users/1973
  9. // ==/UserScript==
  10.  
  11. document.getElementsByClassName('center-box')[2].style.maxWidth='none';
  12. var aBoxes = document.getElementsByClassName('nohighlight hasmenu extraction-content');
  13. for (var f = 0; f < aBoxes.length; f++){
  14. aBoxes[f].style.maxWidth='none';
  15. aBoxes[f].style.width='auto';
  16. }