Greasy Fork is available in English.
Limit height of job window iFrame on MTurk.com
当前为
// ==UserScript==
// @name MTurk Max Job Window Height
// @author locke2002
// @namespace
// @description Limit height of job window iFrame on MTurk.com
// @include *.mturk.com/*
// @version 1.01
// @grant none
// ==/UserScript==
var hitIframe = document.getElementsByName('ExternalQuestionIFrame')[0];
if ( hitIframe )
{
hitIframe.style.height='90%';
}