MTurk mosaic - Extract simple information (4 items)

Enlarge parts of the mosaic HIT UI

  1. // ==UserScript==
  2. // @name MTurk mosaic - Extract simple information (4 items)
  3. // @namespace http://idlewords.net
  4. // @description Enlarge parts of the mosaic HIT UI
  5. // @include https://evolvdevelopment.com/hits/nexthit*
  6. // @version 0.1
  7. // @require https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11.  
  12. $(function() {
  13. $("#bigbox").attr('style', 'width: 95% !important;');
  14. $(".main").attr('style', 'height: 90% !important;');
  15. $(".chunkL").attr('style', 'width: 80% !important;');
  16. $(".chunkR").attr('style', 'width: 20% !important;');
  17. });