MTurk resize iframe and setfocus

Resizes the Mechanical Turk (MTurk) HIT iframe to 1200 and automatically sets the focus to the iframe.

  1. // ==UserScript==
  2. // @name MTurk resize iframe and setfocus
  3. // @namespace na
  4. // @include http://www.mturk.com/mturk/*
  5. // @version 1
  6. // @grant none
  7. // @description Resizes the Mechanical Turk (MTurk) HIT iframe to 1200 and automatically sets the focus to the iframe.
  8. // ==/UserScript==
  9.  
  10.  
  11. var a = document.getElementsByTagName("IFRAME");
  12. for (var i=0, len=a.length; i<len; i++) {
  13. a[i].height="1200";
  14. a[i].focus();
  15. }
  16.